docs: Update the docs for "Preptember" challenge #1206
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto Assign to Project(s) | |
on: | |
issues: | |
types: [opened, labeled] | |
pull_request: | |
types: [opened, labeled] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
assign_one_project: | |
runs-on: ubuntu-latest | |
name: Assign to One Project | |
steps: | |
- name: 'Assign issues with `Lightning Talks: TODO` label to TODO project' | |
uses: srggrs/[email protected] | |
if: | | |
contains(github.event.issue.labels.*.name, 'Lightning Talks: TODO') | |
with: | |
project: 'https://github.com/Virtual-Coffee/VC-Community-Docs/projects/1' | |
column_name: 'To do' | |
- name: 'Assign issues with `Lightning Talk: Individual Talk` label to planning project' | |
uses: srggrs/[email protected] | |
if: | | |
contains(github.event.issue.labels.*.name, 'Lightning Talk: Individual Talk') | |
with: | |
project: 'https://github.com/Virtual-Coffee/VC-Community-Docs/projects/2' | |
column_name: 'Unassigned' | |
- name: 'Assign issues with `Lightning Talks: Post-production` label to post production project' | |
uses: srggrs/[email protected] | |
if: | | |
contains(github.event.issue.labels.*.name, 'Lightning Talks: Post-production') | |
with: | |
project: 'https://github.com/Virtual-Coffee/VC-Community-Docs/projects/6' | |
column_name: 'Inbox' | |
- name: 'Assign issues with `Lunch & Learn: Event` label to Lunch & Learn planning project' | |
uses: srggrs/[email protected] | |
if: | | |
contains(github.event.issue.labels.*.name, 'Lunch & Learn: Event') | |
with: | |
project: 'https://github.com/Virtual-Coffee/VC-Community-Docs/projects/5' | |
column_name: 'Inbox' | |
- name: 'Assign issues with `Lunch & Learn: Post-production` label to post-production project' | |
uses: srggrs/[email protected] | |
if: | | |
contains(github.event.issue.labels.*.name, 'Lunch & Learn: Post-production') | |
with: | |
project: 'https://github.com/Virtual-Coffee/VC-Community-Docs/projects/6' | |
column_name: 'Inbox' | |
- name: 'Assign pull requests with `Lunch & Learn: Post-production` label to post-production project' | |
uses: srggrs/[email protected] | |
if: | | |
contains(github.event.pull_request.labels.*.name, 'Lunch & Learn: Post-production') | |
with: | |
project: 'https://github.com/Virtual-Coffee/VC-Community-Docs/projects/6' | |
column_name: 'Inbox' |