Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(actions): add a workflow to automatically add new Zebra issues to projects #6008

Merged
merged 5 commits into from
Jan 24, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/project-management.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Configuration for automatically adding issues to various Github projects for Project Management purposes
#
# Automatically add issues and PRs to the "Zebra Backlog" Github project.
gustavovalverde marked this conversation as resolved.
Show resolved Hide resolved
on:
issues:
types:
- opened

jobs:
add-to-project:
gustavovalverde marked this conversation as resolved.
Show resolved Hide resolved
name: Adds all new issues to the "Zebra Backlog" Github project
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/ZcashFoundation/projects/9
github-token: ${{ secrets.ACTIONS_PM_GITHUB_PROJECTS }}

# Automatically add issues and PRs to the "Engineering Backlog" Github project.
on:
issues:
types:
- opened

jobs:
add-to-project:
name: Adds all new issues to the "ZF Engineering Backlog" Github project
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/ZcashFoundation/projects/13
github-token: ${{ secrets.ACTIONS_PM_GITHUB_PROJECTS }}
gustavovalverde marked this conversation as resolved.
Show resolved Hide resolved