Research Task - add meters_to_nearest_shn
as column for ca_transit_stops
#2272
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: Board wrangling | |
on: | |
issues: | |
types: [labeled, opened] | |
pull_request: | |
jobs: | |
github-actions-automate-projects: | |
runs-on: ubuntu-latest | |
steps: | |
- name: add-new-issues-to-repository-based-project-column | |
uses: takanabe/github-actions-automate-projects@v0.0.2 | |
if: github.event_name == 'issues' && github.event.action == 'labeled' && github.event.label.name == 'research request' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_PROJECT_URL: https://github.com/cal-itp/data-analyses/projects/1 | |
GITHUB_PROJECT_COLUMN_NAME: Research Requests | |
- name: add-new-issues-to-repository-based-project-column | |
uses: takanabe/github-actions-automate-projects@v0.0.2 | |
if: github.event_name == 'issues' && github.event.action == 'labeled' && github.event.label.name == 'new team member' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_PROJECT_URL: https://github.com/cal-itp/data-analyses/projects/1 | |
GITHUB_PROJECT_COLUMN_NAME: Issues in Progress | |
- name: add-new-issues-to-repository-based-project-column | |
uses: takanabe/github-actions-automate-projects@v0.0.2 | |
if: github.event_name == 'issues' && github.event.action == 'labeled' && github.event.label.name == 'portfolio request' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_PROJECT_URL: https://github.com/cal-itp/data-analyses/projects/1 | |
GITHUB_PROJECT_COLUMN_NAME: Ready for Portfolio | |
- name: add-new-issues-to-repository-based-project-column | |
uses: takanabe/github-actions-automate-projects@v0.0.2 | |
if: github.event_name == 'issues' && github.event.action == 'labeled' && github.event.label.name == 'epic' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_PROJECT_URL: https://github.com/cal-itp/data-analyses/projects/1 | |
GITHUB_PROJECT_COLUMN_NAME: Epics in Progress | |
- name: add-new-issues-to-repository-based-project-column | |
uses: takanabe/github-actions-automate-projects@v0.0.2 | |
if: github.event_name == 'issues' && github.event.action == 'labeled' && github.event.label.name == 'research task' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_PROJECT_URL: https://github.com/cal-itp/data-analyses/projects/1 | |
GITHUB_PROJECT_COLUMN_NAME: Issues in Progress | |
- name: add-new-issues-to-repository-based-project-column | |
uses: takanabe/github-actions-automate-projects@v0.0.2 | |
if: github.event_name == 'issues' && github.event.action == 'labeled' && github.event.label.name == 'feature request' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_PROJECT_URL: https://github.com/cal-itp/data-analyses/projects/1 | |
GITHUB_PROJECT_COLUMN_NAME: To Be Refined | |
- name: add-new-issues-to-repository-based-project-column | |
uses: takanabe/github-actions-automate-projects@v0.0.2 | |
if: github.event_name == 'issues' && github.event.action == 'labeled' && github.event.label.name == 'bug' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_PROJECT_URL: https://github.com/cal-itp/data-analyses/projects/1 | |
GITHUB_PROJECT_COLUMN_NAME: To Be Refined | |
- name: add-new-issues-to-repository-based-project-column | |
uses: takanabe/github-actions-automate-projects@v0.0.2 | |
if: github.event_name == 'issues' && github.event.action == 'labeled' && github.event.label.name == 'documentation' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_PROJECT_URL: https://github.com/cal-itp/data-analyses/projects/1 | |
GITHUB_PROJECT_COLUMN_NAME: Ready for Work |