Skip to content

Commit

Permalink
ci: Testing updates manually
Browse files Browse the repository at this point in the history
Updating the version of GHA's being used. One reason is to address
security concerns.
  • Loading branch information
alerickson0 committed Oct 1, 2024
1 parent 0198b77 commit 3d39092
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/ReleaseIssue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
name: Monthly Release Thread

on:
schedule:
- cron: 0 0 1 * * # Every 1st day of the month at 0000 – https://crontab.guru
# schedule:
# - cron: 0 0 1 * * # Every 1st day of the month at 0000 – https://crontab.guru
workflow_dispatch:

jobs:
monthly_release:
Expand All @@ -12,21 +13,28 @@ jobs:

# Repo code checkout required if `template` is used
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

# Get current month for issue title
- name: get-date
id: date
run: echo "::set-output name=date::$(date +'%B %Y')"
run: |
release_thread_date="$(date +'%B %Y')"
echo "date=$release_thread_date" >> $GITHUB_OUTPUT
# Create, pin, label, and assign release issue
- name: create-issue
id: extract
uses: imjohnbo/extract-issue-template-fields@v1
with:
path: ".github/RELEASE_TEMPLATE.md"

- name: create-issue
id: issue
uses: imjohnbo/issue-bot@v2
uses: imjohnbo/issue-bot@v3
with:
pinned: true
close-previous: true
title: "RELEASE THREAD: ${{ steps.date.outputs.date }}"
template: ".github/RELEASE_TEMPLATE.md"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3d39092

Please sign in to comment.