Skip to content

Commit fa86d21

Browse files
authored
Merge pull request #493 from davidlange6/dl260428
add action to populate pull request project table with new/reopened PRs
2 parents 34ed852 + 5d9c0a8 commit fa86d21

2 files changed

Lines changed: 27 additions & 0 deletions

File tree

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
on:
2+
workflow_call:
3+
jobs:
4+
add-to-project:
5+
name: Add issue to project
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/add-to-project@v1.0.2
9+
with:
10+
project-url: https://github.com/orgs/HEP-FCC/projects/7
11+
github-token: ${{ secrets.FCC_PR_PROJECT_TOKEN }}
12+
#we can eventually add label requirements
13+
#labeled: needs-triage
14+
#label-operator: OR

.github/workflows/fcc-prs.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Add PR to FCC PR tracker
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- reopened
8+
9+
jobs:
10+
call-ci:
11+
uses: HEP-FCC/FCCSW/.github/workflows/add_to_fcc_pr_project.yml@main
12+
13+

0 commit comments

Comments
 (0)