Skip to content

Commit

Permalink
Workflow to add new issue/PR to project
Browse files Browse the repository at this point in the history
This workflow will add every new issue/PR to avocado project, so we will
have all issues/PR on one project board.

Reference: https://github.com/orgs/avocado-framework/projects/1
Signed-off-by: Jan Richter <[email protected]>
  • Loading branch information
richtja committed Feb 8, 2024
1 parent dabad9d commit ad524b3
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Add new issue/PR to project

on:
issues:
types:
- opened
- reopened

pull_request_target:
types:
- opened

jobs:
add-to-project:
name: Add issue or PR to project
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3

- name: add-to-project
uses: ./
with:
avocado-project: true

0 comments on commit ad524b3

Please sign in to comment.