Skip to content

Commit 34abae3

Browse files
authored
test_issue_tracking_automation
1 parent bd5abc4 commit 34abae3

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# automation to add issues to tracker board (test)
2+
# dev: DC
3+
4+
name: Add issues/PRs to Org Project
5+
6+
on:
7+
issues:
8+
types: [opened, reopened, transferred, labeled]
9+
pull_request:
10+
types: [opened, reopened, ready_for_review, labeled]
11+
12+
permissions:
13+
contents: read
14+
issues: read
15+
pull-requests: read
16+
17+
jobs:
18+
add_to_project:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Add item to org project
22+
uses: actions/add-to-project@v1
23+
with:
24+
project-url: https://github.com/orgs/cantinilab/projects/2
25+
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}

0 commit comments

Comments
 (0)