You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This action adds all issues and PRs with a "team/fs-wg" label to the FS project board.
10
+
# It is used to keep the FS project board up to date with the issues and PRs.
11
+
# It is triggered by the issue and PR events.
12
+
# It assumes a `FILOZZY_CI_ADD_TO_PROJECT` secret is set in the repo.
13
+
# This secret should have the permissions outlined in https://github.com/actions/add-to-project?tab=readme-ov-file#creating-a-pat-and-adding-it-to-your-repository
14
+
name: Add issues and PRs to FS project board
15
+
16
+
on:
17
+
issues:
18
+
types:
19
+
- labeled
20
+
pull_request:
21
+
types:
22
+
- labeled
23
+
24
+
jobs:
25
+
add-to-project:
26
+
name: Add all "team/fs-wg" issues and PRs to project
0 commit comments