Skip to content

Commit

Permalink
feat(workflow): add to docs project if issue is labelled with docs (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurapov authored Aug 28, 2024
1 parent e20228f commit 4796d01
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/add_to_docs_board.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Add to documentation project board
on:
issues:
types:
- labeled

jobs:
add-to-project:
if: github.event.label.name == 'docs'
name: Add issue to project
runs-on: ubuntu-22.04
steps:
- uses: actions/add-to-project@v1
with:
project-url: https://github.com/orgs/interledger/projects/24/
github-token: ${{ secrets.ADD_TO_PROJECT_TOKEN }}

0 comments on commit 4796d01

Please sign in to comment.