Bump the workflows group across 1 directory with 7 updates #1560
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: Add to Project | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| add_to_project: | |
| name: Add pull request to project | |
| if: '!github.event.repository.fork' | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: actions/add-to-project@5afcf98fcd03f1c2f92c3c83f58ae24323cc57fd # v2.0.0 | |
| with: | |
| # PRs are added to the Review project | |
| project-url: https://github.com/orgs/conda/projects/16 | |
| github-token: ${{ secrets.PROJECT_TOKEN }} |