We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65aadca commit 9d14c8fCopy full SHA for 9d14c8f
.github/workflows/official-build.yml
@@ -5,14 +5,12 @@ on:
5
branches:
6
- main
7
8
- paths:
9
- - 'release/vNext'
10
-
11
permissions:
12
contents: read
13
14
jobs:
15
build:
+ if: github.base_ref == 'main' && github.head_ref == 'release/vNext'
16
runs-on: ubuntu-latest
17
18
@@ -48,7 +46,7 @@ jobs:
48
46
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
49
47
git pull origin ${{ steps.extract_branch.outputs.branch }}
50
git add .
51
- git commit -m 'Compile TypeScript to JavaScript'
+ git commit -m 'Official Build: Compile TypeScript to JavaScript'
52
git push origin HEAD:${{ steps.extract_branch.outputs.branch }}
53
env:
54
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments