Skip to content

Commit

Permalink
Merge pull request #366 from uswds/cm-POAM-action
Browse files Browse the repository at this point in the history
USWDS-Team - POAM: Create POAM.yml
  • Loading branch information
mejiaj authored Jul 2, 2024
2 parents 4bcee7f + 28533c2 commit 3186626
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/POAM.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Monthly Security POAM
on:
schedule:
- cron: 0 0 1 * *

jobs:
create_issue:
name: Create monthly POAM issue
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Create monthly POAM issue
run: |
new_issue_url=$(gh issue create \
--title "$TITLE" \
--assignee "$ASSIGNEES" \
--label "$LABELS" \
--body "$BODY")
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
TITLE: POAM - [MONTH] '24
LABELS: "Role: Dev, Type: Task"
BODY: |
# Summary
POAM for [MONTH] 2024
- [ ] USWDS
- [ ] USWDS-Site
- [ ] USWDS-Sandbox
- [ ] USWDS-Next
- [ ] USWDS-Compile
- [ ] USWDS-Tutorial
- [ ] Public Sans

0 comments on commit 3186626

Please sign in to comment.