Skip to content

Commit

Permalink
move shared workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
YaroShkvorets committed Jan 25, 2025
1 parent 95a2111 commit b9864eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ permissions: write-all

jobs:
dependencies:
uses: ./.github/workflows/reusable/changesets-dependencies.yml
uses: ./.github/workflows/shared-changesets-dependencies.yml
if: ${{ github.event.pull_request.title != 'Upcoming Release Changes' }}
secrets:
githubToken: ${{ secrets.GITHUB_TOKEN }}

alpha:
uses: ./.github/workflows/reusable/release-snapshot.yml
uses: ./.github/workflows/shared-release-snapshot.yml
if: ${{ github.event.pull_request.title != 'Upcoming Release Changes' }}
with:
npmTag: alpha
Expand All @@ -27,7 +27,7 @@ jobs:
npmToken: ${{ secrets.NPM_TOKEN }}

release-candidate:
uses: ./.github/workflows/reusable/release-snapshot.yml
uses: ./.github/workflows/shared-release-snapshot.yml
if: ${{ github.event.pull_request.title == 'Upcoming Release Changes' }}
with:
npmTag: rc
Expand Down

0 comments on commit b9864eb

Please sign in to comment.