mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-18 03:14:11 +03:00
08e218e6dd
* Auto Assign PRs to priorisation project * Fix from @mondeja review * hyphen for job name * Update token name
27 lines
816 B
YAML
27 lines
816 B
YAML
name: Auto Assign to Project(s)
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, labeled]
|
|
env:
|
|
MY_GITHUB_TOKEN: ${{ secrets.AUTO_ASSIGN_WORKFLOW_TOKEN }}
|
|
|
|
jobs:
|
|
assign-to-project:
|
|
runs-on: ubuntu-latest
|
|
name: Assign to Project
|
|
steps:
|
|
- name: Assign pull requests to "Unprioritised"
|
|
uses: srggrs/assign-one-project-github-action@1.2.0
|
|
if: github.event.action == 'opened'
|
|
with:
|
|
project: https://github.com/orgs/simple-icons/projects/2
|
|
column_name: Unprioritised
|
|
|
|
- name: Assign `icon outdated` pull requests to "Priority 1"
|
|
uses: srggrs/assign-one-project-github-action@1.2.0
|
|
if: contains(github.event.pull_request.labels.*.name, 'icon outdated')
|
|
with:
|
|
project: https://github.com/orgs/simple-icons/projects/2
|
|
column_name: Priority 1
|