Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/process-dependabot-prs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Add fundamentals PRs and issues to fundamentals board
permissions:
contents: read
issues: write
pull-requests: write

Comment on lines +4 to +6
on:
issues:
types:
- opened
- labeled
pull_request:
types:
- opened
- labeled

jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
Comment on lines +10 to +20
steps:
- uses: actions/add-to-project@v1.0.2
with:
project-url: https://github.com/orgs/github/projects/4292
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
labeled: fundamentals
Loading