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 to the FS project board.
# It is used to keep the project board up to date with the issues and PRs.
# It is triggered by the issue and PR events.
# It assumes a `FILOZZY_CI_ADD_TO_PROJECT` secret is set in the repo.
# 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
name: Add issues and PRs to FS project board
on:
issues:
types:
- opened
# Using "pull_request_target" instead of "pull_request" to support PRs from forks.
# Workflow runs triggered on PRs from forks do not have access to secrets, so "github-token" input below would otherwise be empty.
# This action does not check out nor execute user code so we should be safe.
# We also hardcode to specific hash to ensure no unintended changes underneath us.