Skip to content

Update issues-new.yml #60

Update issues-new.yml

Update issues-new.yml #60

Workflow file for this run

name: Monthly
on:
schedule:
- cron: 0 6 15 * *
jobs:
create_issue:
name: Create invoice issue for COR
runs-on: ubuntu-latest
permissions:
issues: write
steps:
# https://stackoverflow.com/a/60942437/358804

Check failure on line 13 in .github/workflows/monthly.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/monthly.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
- name: Get dates
id: date
run: |
echo "::set-output name=current::$(date +'%m/%y')"
echo "::set-output name=due::$(date -d '+15 days' +'%m/%d/%y')"
- name: Create issue
uses: imjohnbo/issue-bot@v3
with:
assignees: jjediny, ethanheppner, rocheller123, mtaylor-gsa
labels: "g: accepted, m: due date, i: COR"
title: process invoices for ${{ steps.date.outputs.current }} - due ${{ steps.date.outputs.due }}
body: |
### Implementation steps
Confirm usage and route invoices to Contracting Officer (CO) for:
- [ ] AWS
- [ ] Azure
- [ ] GCP
- [ ] Zendesk
- [ ] Airtable
- [ ] Mural
- [ ] New Relic
### Acceptance criteria
- [ ] All invoices routed
pinned: false
close-previous: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}