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

Create add-to-project.yaml #544

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Changes from all commits
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
23 changes: 23 additions & 0 deletions .github/workflows/add-to-project.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Please note that this adds issues to a private project which is maintained by Crate.io.
# This allows us to triage and promptly come back to the creators.
name: Add new issues to the right project

on:
issues:
types:
- opened
- reopened

jobs:
add-to-project:
name: Add issue to project with Triage label
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/crate/projects/40
github-token: ${{ secrets.JENKINS_USER_TOKEN }}

- uses: actions-ecosystem/action-add-labels@v1
with:
labels: triage
Loading