Create add-dependabot-pr-to-project.yml #1
Workflow file for this run
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
name: Assign Dependabot PR to Compute Foundation Project | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, reopened, labeled] | |
env: | |
ADD_TO_PROJECT_PAT: ${{ secrets.ADD_TO_PROJECT_PAT }} | |
jobs: | |
add-to-project: | |
name: Add to Compute Foundation Project Board | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
project-url: https://github.com/orgs/github/projects/5753/ # Compute Foundation Project Board | |
github-token: ${{ env.ADD_TO_PROJECT_PAT }} | |
labeled: dependencies |