Skip to content

Commit

Permalink
Create Public-health-check.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Adeyinka Oresanya <[email protected]>
  • Loading branch information
adeyinkaoresanya authored Aug 7, 2024
1 parent 5debc0e commit cab6840
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/Public-health-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Public Health Pledge Badging Check
on:
schedule:
- cron: 0 5 1 6,12 *

jobs:
create_issue:
name: Check Public Health Pledge
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Create issue
run: |
if [[ $CLOSE_PREVIOUS == true ]]; then
previous_issue_number=$(gh issue list \
--label "$LABELS" \
--json number \
--jq '.[0].number')
if [[ -n $previous_issue_number ]]; then
gh issue close "$previous_issue_number"
gh issue unpin "$previous_issue_number"
fi
fi
new_issue_url=$(gh issue create \
--title "$TITLE" \
--assignee "$ASSIGNEES" \
--label "$LABELS" \
--body "$BODY")
if [[ $PINNED == true ]]; then
gh issue pin "$new_issue_url"
fi
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
TITLE: Check Public Health Pledge Badging
ASSIGNEES: elizabethn
LABELS: check
BODY: |
Check the [Public Health Pledge Badge](https://publichealthpledge.com/badging) for updates, as this is tied to our DEI Event Badging Application.
PINNED: false
CLOSE_PREVIOUS: false

0 comments on commit cab6840

Please sign in to comment.