Update recent measurements section on country pages to match updated designs #14
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
# automatically syched from: ooni/pm-tools | |
on: | |
issues: | |
types: | |
- opened | |
- labeled | |
pull_request: | |
types: | |
- opened | |
- labeled | |
jobs: | |
add-to-project: | |
name: Add issue to project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/add-to-project@v1.0.2 | |
if: github.event.action == 'opened' | |
with: | |
# Add to triaging board | |
project-url: https://github.com/orgs/ooni/projects/47 | |
github-token: ${{ secrets.ADD_TO_PROJECT_GH_TOKEN }} | |
- uses: actions/add-to-project@v1.0.2 | |
if: github.event.action == 'labeled' && startsWith(github.event.label.name, 'funder/') | |
with: | |
project-url: https://github.com/orgs/ooni/projects/33 | |
github-token: ${{ secrets.ADD_TO_PROJECT_GH_TOKEN }} |