Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add "Enable Pack Release" Workflow #27

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/enable-pack-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Enable Pack Release

# Only allow one workflow run per branch at a time.
# When one is already running, new runs will be pending.
# https://github.blog/changelog/2021-04-19-github-actions-limit-workflow-run-or-job-concurrency/
concurrency:
group: enable-pack-release-${{ github.ref }}
# Do not use cancel-in-progress! Or we might create a scenario where all workflows get canceled before they complete.

permissions:
contents: write

on:
# First day of the month at midnight.
schedule:
- cron: "0 0 1 * *"
# manual rebuilds by TSC members
workflow_dispatch:

jobs:
enable_pack_release_workflow:
name: 'Enable Pack Release Workflow'
uses: StackStorm-Exchange/ci/.github/workflows/pack-enable_release_workflow.yaml@master