Skip to content

Commit

Permalink
Merge pull request #1464 from stakwork/ecurrencyhodler-patch-1
Browse files Browse the repository at this point in the history
Add workflow to auto-add issues to bounties platform project
  • Loading branch information
ecurrencyhodler authored Jan 26, 2024
2 parents 5fc5ef8 + c37b042 commit d78b31a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/add_issues_to_project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Since we've separated the frontend from the backend, we must track 2 repos in our bounties platform project. The free version of github only allows the project to reference one repo for free. So we are implementing this workflow to have issues be auto-added to the bounties platform project board from a second repo.

name: Add issues labeled `bounties` to bounties platform project

on:
issues:
types:
- opened

jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.5.0
with:
project-url: https://github.com/orgs/stakwork/projects/24
github-token: ${{ secrets.ADD_TO_PROJECT }}
labeled: bounties

0 comments on commit d78b31a

Please sign in to comment.