some lockfile stuff #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Stage Release | |
on: | |
push: | |
branches: | |
- newrepo | |
env: | |
TZ: "America/New_York" | |
jobs: | |
stage-release: | |
name: Stage Release | |
# conditions for 2 types of merges: normal & rebase | |
if: > | |
github.repository == 'fullcalendar/fullcalendar-workspace' && | |
!contains(github.event.head_commit.message, vars.STAGED_RELEASE_BRANCH) && | |
!contains(github.event.head_commit.message, vars.STAGED_RELEASE_COMMIT_MESSAGE) && | |
!contains(github.event.head_commit.message, 'no-stage') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup PNPM | |
uses: pnpm/action-setup@v2.2.4 | |
with: | |
version: 8.6.3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.13.0 | |
cache: 'pnpm' | |
# - name: Setup Turbo Cache | |
# uses: actions/cache@v3 | |
# with: | |
# path: node_modules/.cache/turbo | |
# key: turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }} | |
# restore-keys: turbo-${{ github.job }}-${{ github.ref_name }}- | |
- name: Install Dependencies | |
run: | | |
pnpm install \ | |
--filter '@fullcalendar/*...' \ | |
--filter '@fullcalendar-scripts/*...' \ | |
--filter '@fullcalendar-tests/*...' \ | |
--filter '!./contrib/**' \ | |
- name: Bump Versions | |
run: | | |
pnpm run version | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
branch: ${{ vars.STAGED_RELEASE_BRANCH }} | |
commit-message: ${{ vars.STAGED_RELEASE_COMMIT_MESSAGE }} | |
title: ${{ vars.STAGED_RELEASE_PR_TITLE }} | |
body: Staged release baby!!! | |
delete-branch: true # delete old branch (if no open PRs) before creating new |