Incorrect 2016 and 2017 Budget figures for US-USAGOV #598
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: Mark as updated | |
on: | |
issue_comment: | |
types: | |
- created | |
jobs: | |
mark-as-updated: | |
if: "contains(github.event.issue.labels.*.name, 'awaiting update') && github.event.comment.user.login != 'codeforIATIbot'" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions-ecosystem/action-remove-labels@v1 | |
with: | |
labels: "awaiting update" | |
github_token: ${{ secrets.GH_TOKEN }} | |
fail_on_error: true | |
move-to-longstanding: | |
if: "github.event.issue.state == 'open'" | |
runs-on: ubuntu-latest | |
needs: mark-as-updated | |
steps: | |
- uses: alex-page/[email protected] | |
with: | |
project: IATI data bugtracker | |
column: Long-standing issues | |
repo-token: ${{ secrets.GH_TOKEN }} |