Skip to content

Commit

Permalink
Add a GitHub action to automatically add issues/PRs to the team board
Browse files Browse the repository at this point in the history
Signed-off-by: Pavlo Shevchenko <[email protected]>
  • Loading branch information
pshevche committed May 21, 2024
1 parent c1a0e24 commit 1b47f69
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/add-issue-to-team-board.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: 'Add issue/PR to the team board'

on:
issues:
types: [opened]
pull_request:
types: [opened]

jobs:
add-to-project:
name: Add issue/PR to the team board
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
# Testing team's project board
project-url: https://github.com/orgs/gradle/projects/27
github-token: ${{ secrets.GH_BOT_GITHUB_TOKEN }}

0 comments on commit 1b47f69

Please sign in to comment.