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.
8
+
# It is used to keep the FS project board up to date with the issues and PRs.
9
+
# It is triggered by the issue and PR events.
10
+
# It assumes a `FILOZZY_CI_ADD_TO_PROJECT` secret is set in the repo.
11
+
# 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
12
+
name: Add issues and PRs to FS project board
13
+
14
+
on:
15
+
issues:
16
+
types:
17
+
- labeled
18
+
# Using "pull_request_target" instead of "pull_request" to support PRs from forks.
19
+
# Workflow runs triggered on PRs from forks do not have access to secrets, so "github-token" input below would otherwise be empty.
20
+
# This action does not check out nor execute user code so we should be safe.
21
+
# We also hardcode to specific hash to ensure no unintended changes underneath us.
22
+
pull_request_target:
23
+
types:
24
+
- labeled
25
+
26
+
jobs:
27
+
add-to-project:
28
+
name: Add all "team/fs-wg" issues and PRs to project
0 commit comments