Skip to content

Commit

Permalink
Merge pull request #71 from openfoodfacts/ghp
Browse files Browse the repository at this point in the history
ci: Create github-projects.yml
  • Loading branch information
teolemon authored Sep 4, 2024
2 parents 3a8ca1a + 80d965d commit 997ff98
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/github-projects.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Add bugs and PRs to the relevant GitHub Projects

on:
issues:
types:
- opened
- labeled
pull_request:
types:
- opened
- labeled
jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@main
with:
project-url: https://github.com/orgs/openfoodfacts/projects/132 # Add issue to the Top upvoted issues board
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
labeled: ⭐ top issue, 👍 Top 10 Issue!
label-operator: OR
- uses: actions/add-to-project@main
with:
project-url: https://github.com/orgs/openfoodfacts/projects/57 # Add issue to the Most impactful issues board
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
labeled: 🎯 P0, 🎯 P1
label-operator: OR

0 comments on commit 997ff98

Please sign in to comment.