Skip to content

Commit

Permalink
update workflow definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardfoyle committed Apr 3, 2024
1 parent ba5c461 commit c22efd4
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/deprecate_release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: deprecate_release

on:
# TODO remove push trigger before merging
push:
branches:
- rollback
Expand Down Expand Up @@ -39,6 +40,10 @@ jobs:
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# TODO remove test inputs before merging
INPUT_DEPRECATIONMESSAGE: test deprecation message
INPUT_USENPMREGISTRY: false
INPUT_SEARCHFORRELEASESTARTINGFROM: HEAD
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # version 3.6.0
- uses: ./.github/actions/setup_node
Expand Down
47 changes: 47 additions & 0 deletions .github/workflows/restore_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: restore_release

on:
# TODO remove push trigger before merging
push:
branches:
- rollback
workflow_dispatch:
inputs:
useNpmRegistry:
required: false
type: boolean
default: false
description: |
Whether to run the workflow against the live npm registry or not.
Defaults to false. Must be explicitly set to true to run against the npm registry.
searchForReleaseStartingFrom:
required: false
type: string
default: HEAD
description: |
By default, the most recent release from HEAD (inclusive) of the target branch will be deprecated.
To deprecate a different release, specify the release commit to deprecate here.
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # version 3.6.0
- uses: ./.github/actions/setup_node
- uses: ./.github/actions/install_with_cache
restore_release:
needs:
- install
runs-on: ubuntu-latest
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# TODO remove test inputs before merging
INPUT_USENPMREGISTRY: false
INPUT_SEARCHFORRELEASESTARTINGFROM: HEAD
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # version 3.6.0
- uses: ./.github/actions/setup_node
- uses: ./.github/actions/restore_install_cache
- name: Restore release versions
run: npx tsx scripts/restore_release.ts

0 comments on commit c22efd4

Please sign in to comment.