Release campaign state before clearing the UI that displays it #656
Workflow file for this run
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: Copy Labels to PR | ||
|
Check warning on line 1 in .github/workflows/copy-label-to-pr.yml
|
||
| on: | ||
| pull_request_target: | ||
| types: [opened] | ||
| jobs: | ||
| copy-labels: | ||
| permissions: | ||
| contents: read | ||
| issues: read | ||
| pull-requests: write | ||
| runs-on: ubuntu-latest | ||
| name: Copy labels from linked issues | ||
| steps: | ||
| - name: copy-labels | ||
| uses: michalvankodev/copy-issue-labels@v1.3.0 | ||
| with: | ||
| repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
| labels-to-include: | | ||
| bug | ||
| build-configuration | ||
| breaking-change | ||
| code-maintenance | ||
| dependencies | ||
| feature | ||
| ignore-for-release-note | ||
| performance | ||
| refactor | ||
| repo-admin | ||
| translations | ||