Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
ci: add workflow to automatically link issues to project
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemSBulgakov committed Feb 25, 2024
1 parent acb5e44 commit 7b3fc2f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/add-issues-to-project.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Link issue to InNoHassle project

on:
issues:
types:
- opened
- reopened
- transferred
pull_request:
types:
- opened
- reopened

jobs:
add-to-project:
name: Add issue to project
if: github.repository_owner == 'one-zero-eight' # Do not run in forks
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/one-zero-eight/projects/4
github-token: ${{ secrets.ACTIONS_PAT_PROJECTS }}

0 comments on commit 7b3fc2f

Please sign in to comment.