[ABLD-256] First version of rules to make installer symlinks #88024
This file contains hidden or 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
| name: Backport PR | |
| on: | |
| pull_request: | |
| types: | |
| - closed | |
| - labeled | |
| jobs: | |
| backport: | |
| name: Backport PR | |
| runs-on: ubuntu-latest | |
| if: > | |
| github.event.pull_request.merged | |
| && ( | |
| github.event.action == 'closed' | |
| || ( | |
| github.event.action == 'labeled' | |
| && contains(github.event.label.name, 'backport') | |
| ) | |
| ) | |
| permissions: | |
| id-token: write # This is required for getting the required OIDC token from GitHub | |
| contents: write # This is required for pushing the backport branch | |
| pull-requests: write # This is required for creating the backport PR | |
| steps: | |
| - uses: DataDog/dd-octo-sts-action@acaa02eee7e3bb0839e4272dacb37b8f3b58ba80 # v1.0.3 | |
| id: octo-sts | |
| with: | |
| scope: DataDog/datadog-agent | |
| policy: self.backport-pr.create-pr | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| fetch-depth: 0 # needed to get the full history of the PR | |
| - name: Install dda | |
| uses: ./.github/actions/install-dda | |
| with: | |
| features: github | |
| - name: Run cherry-pick script | |
| id: cherry-pick | |
| env: | |
| GITHUB_TOKEN: ${{ steps.octo-sts.outputs.token }} | |
| GITHUB_EVENT_PATH: ${{ github.event_path }} | |
| run: dda gh cherry-pick-pr | |
| - name: Reset cherry-pick | |
| if: steps.cherry-pick.outputs.base != '' | |
| run: git reset HEAD~1 | |
| - name: Create pull request | |
| uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 | |
| if: steps.cherry-pick.outputs.base != '' | |
| with: | |
| token: ${{ steps.octo-sts.outputs.token }} | |
| base: ${{ steps.cherry-pick.outputs.base }} | |
| branch: backport-${{steps.cherry-pick.outputs.original_pr_number}}-to-${{steps.cherry-pick.outputs.base}} | |
| sign-commits: true | |
| title: "[Backport ${{steps.cherry-pick.outputs.base}}] ${{steps.cherry-pick.outputs.original_title}}" | |
| body: | | |
| Backport ${{steps.cherry-pick.outputs.merge_commit_sha}} from #${{steps.cherry-pick.outputs.original_pr_number}}. | |
| ___ | |
| ${{ steps.cherry-pick.outputs.original_body }} | |
| labels: ${{ steps.cherry-pick.outputs.original_labels }},backport,bot | |
| commit-message: | | |
| ${{ steps.cherry-pick.outputs.message }} | |
| ___ | |
| Co-authored-by: ${{ steps.cherry-pick.outputs.author }} |