-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
007c8aa
commit a59fcd0
Showing
2 changed files
with
95 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,12 +10,50 @@ on: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
AGENT6_RELEASE_BRANCH: '6.53.x' | ||
IS_AGENT6_RELEASE: ${{ github.event.schedule == '0 9 * * 1' }} | ||
# IS_AGENT6_RELEASE: ${{ github.event.schedule == '0 9 * * 1' }} | ||
IS_AGENT6_RELEASE: 'true' | ||
permissions: {} | ||
|
||
jobs: | ||
agent6_check: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
a6_error: ${{ steps.a6_error.outputs.value }} | ||
steps: | ||
- name: Check if agent 6 rc PR already exists | ||
id: a6_error | ||
if: ${{ env.IS_AGENT6_RELEASE == 'true' }} | ||
run: | | ||
prs=$(gh pr list \ | ||
--repo "$GITHUB_REPOSITORY" \ | ||
--base "$AGENT6_RELEASE_BRANCH" \ | ||
--json url,title \ | ||
--search "Update release.json and Go modules for in:title") | ||
echo $prs | ||
if [ "$(echo "$prs" | jq 'length')" -gt 0 ]; then | ||
pr_url=$(echo "$prs" | jq -r '.[0].url') | ||
echo "value=Error: An agent 6 release candidate PR already exists, please merge and build it before creating a new one $pr_url" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Send Agent 6 error to slack | ||
uses: slackapi/[email protected] | ||
if: ${{ env.IS_AGENT6_RELEASE == 'true' && steps.a6_error.outputs.value }} | ||
with: | ||
webhook: ${{ secrets.SLACK_DATADOG_AGENT_CI_WEBHOOK }} | ||
webhook-type: webhook-trigger | ||
payload: | | ||
channel_id: "C085P12CTFX" | ||
message: "${{ steps.a6_error.outputs.value }}" | ||
- name: Fail and exit workflow | ||
if: ${{ env.IS_AGENT6_RELEASE == 'true' && steps.a6_error.outputs.value }} | ||
run: | | ||
echo ${{ steps.a6_error.outputs.value }} | ||
exit 1 | ||
find_release_branches: | ||
runs-on: ubuntu-latest | ||
needs: agent6_check | ||
outputs: | ||
branches: ${{ steps.branches.outputs.value }} | ||
warning: ${{ steps.warning.outputs.value }} | ||
|
@@ -57,57 +95,57 @@ jobs: | |
run: | | ||
echo "value=-w" >> $GITHUB_OUTPUT | ||
create_rc_pr: | ||
runs-on: ubuntu-latest | ||
needs: find_release_branches | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
strategy: | ||
matrix: | ||
value: ${{fromJSON(needs.find_release_branches.outputs.branches)}} | ||
fail-fast: false | ||
steps: | ||
- name: Checkout the main branch | ||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | ||
with: | ||
persist-credentials: true | ||
# create_rc_pr: | ||
# runs-on: ubuntu-latest | ||
# needs: find_release_branches | ||
# permissions: | ||
# contents: write | ||
# pull-requests: write | ||
# strategy: | ||
# matrix: | ||
# value: ${{fromJSON(needs.find_release_branches.outputs.branches)}} | ||
# fail-fast: false | ||
# steps: | ||
# - name: Checkout the main branch | ||
# uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | ||
# with: | ||
# persist-credentials: true | ||
|
||
- name: Install python | ||
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | ||
with: | ||
python-version: 3.11 | ||
cache: "pip" | ||
# - name: Install python | ||
# uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | ||
# with: | ||
# python-version: 3.11 | ||
# cache: "pip" | ||
|
||
- name: Install Python dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
pip install -r tasks/libs/requirements-github.txt | ||
pip install -r tasks/requirements_release_tasks.txt | ||
# - name: Install Python dependencies | ||
# run: | | ||
# python -m pip install --upgrade pip | ||
# pip install -r requirements.txt | ||
# pip install -r tasks/libs/requirements-github.txt | ||
# pip install -r tasks/requirements_release_tasks.txt | ||
|
||
- name: Check for changes since last RC | ||
id: check_for_changes | ||
env: | ||
ATLASSIAN_USERNAME: ${{ secrets.ATLASSIAN_USERNAME }} | ||
ATLASSIAN_PASSWORD: ${{ secrets.ATLASSIAN_PASSWORD }} | ||
SLACK_API_TOKEN : ${{ secrets.SLACK_DATADOG_AGENT_BOT_TOKEN }} | ||
MATRIX: ${{ matrix.value }} | ||
WARNING: ${{ needs.find_release_branches.outputs.warning }} | ||
run: | | ||
if [ -n "${{ needs.find_release_branches.outputs.warning }}" ]; then | ||
echo "CHANGES=$(inv -e release.check-for-changes -r "$MATRIX" "$WARNING")" >> $GITHUB_OUTPUT | ||
else | ||
echo "CHANGES=$(inv -e release.check-for-changes -r "$MATRIX")" >> $GITHUB_OUTPUT | ||
fi | ||
# - name: Check for changes since last RC | ||
# id: check_for_changes | ||
# env: | ||
# ATLASSIAN_USERNAME: ${{ secrets.ATLASSIAN_USERNAME }} | ||
# ATLASSIAN_PASSWORD: ${{ secrets.ATLASSIAN_PASSWORD }} | ||
# SLACK_API_TOKEN : ${{ secrets.SLACK_DATADOG_AGENT_BOT_TOKEN }} | ||
# MATRIX: ${{ matrix.value }} | ||
# WARNING: ${{ needs.find_release_branches.outputs.warning }} | ||
# run: | | ||
# if [ -n "${{ needs.find_release_branches.outputs.warning }}" ]; then | ||
# echo "CHANGES=$(inv -e release.check-for-changes -r "$MATRIX" "$WARNING")" >> $GITHUB_OUTPUT | ||
# else | ||
# echo "CHANGES=$(inv -e release.check-for-changes -r "$MATRIX")" >> $GITHUB_OUTPUT | ||
# fi | ||
|
||
- name: Create RC PR | ||
if: ${{ steps.check_for_changes.outputs.CHANGES == 'true' || env.IS_AGENT6_RELEASE == 'true' }} | ||
env: | ||
MATRIX: ${{ matrix.value }} | ||
run: | | ||
if ${{ env.IS_AGENT6_RELEASE == 'true' }}; then | ||
inv -e release.create-rc -r "$MATRIX" --slack-webhook=${{ secrets.AGENT_RELEASE_SYNC_SLACK_WEBHOOK }} --patch-version | ||
else | ||
inv -e release.create-rc -r "$MATRIX" --slack-webhook=${{ secrets.AGENT_RELEASE_SYNC_SLACK_WEBHOOK }} | ||
fi | ||
# - name: Create RC PR | ||
# if: ${{ steps.check_for_changes.outputs.CHANGES == 'true' || env.IS_AGENT6_RELEASE == 'true' }} | ||
# env: | ||
# MATRIX: ${{ matrix.value }} | ||
# run: | | ||
# if ${{ env.IS_AGENT6_RELEASE == 'true' }}; then | ||
# inv -e release.create-rc -r "$MATRIX" --slack-webhook=${{ secrets.AGENT_RELEASE_SYNC_SLACK_WEBHOOK }} --patch-version | ||
# else | ||
# inv -e release.create-rc -r "$MATRIX" --slack-webhook=${{ secrets.AGENT_RELEASE_SYNC_SLACK_WEBHOOK }} | ||
# fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters