Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 4 additions & 3 deletions .github/workflows/azure-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: azure-deploy
name: Deploy to Azure Web

on:
push:
branches:
- main
- dev
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -16,10 +17,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v5

- name: Setup Node.js environment
uses: actions/setup-node@v3
uses: actions/setup-node@v6
with:
node-version-file: '.node-version'
cache: 'yarn'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-auto-upsert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Upsert PR
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
with:
ref: "dev"
# fetch all history so that git log can get all commit messages
Expand All @@ -30,7 +30,7 @@ jobs:
# create a PR from dev to main, with title in form: Release <semver>
# where, <semver> is the next version number to be released, based on the last release in git tag
- name: Upsert PR Content
uses: actions/github-script@v6
uses: actions/github-script@v8
with:
github-token: ${{ github.token }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scripts-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v5

- name: Setup Node.js environment
uses: actions/setup-node@v3
uses: actions/setup-node@v6
with:
node-version-file: '.node-version'
cache: 'yarn'
Expand Down