mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-20 16:42:45 +02:00
* Create release actions * Add release branch to push/pull events that invoke test workflows
12 lines
497 B
YAML
12 lines
497 B
YAML
name: Post Release Deleted
|
|
on:
|
|
delete:
|
|
|
|
jobs:
|
|
# Set the BETA_DEPLOY_BRANCH variable to beta when a release branch is deleted
|
|
update-release-var:
|
|
if: github.repository == 'pagefaultgames/pokerogue' && github.event.ref_type == 'branch' && github.event.ref == 'release'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set BETA_DEPLOY_BRANCH to beta
|
|
run: GITHUB_TOKEN="${{ secrets.RW_VARS_PAT }}" gh variable set BETA_DEPLOY_BRANCH --body "beta" --repo "pagefaultgames/pokerogue" |