fix(stack): stack tags are separate from other tags (under feature flag) #16623
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
# Apply various labels on PRs | |
name: pr-labeler | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- reopened | |
jobs: | |
auto-approve: | |
if: github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'dependabot-preview[bot]' | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
issues: write | |
steps: | |
- run: gh pr edit ${{ github.event.pull_request.number }} --add-label "auto-approve" -R ${{ github.repository }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
copy-labels: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: cdklabs/pr-triage-manager@main | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |