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.
0 parents commit 2e98dbcCopy full SHA for 2e98dbc
.github/workflows/check-and-update.yml
@@ -0,0 +1,26 @@
1
+name: Check and update
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ schedule:
8
+ - cron: '0 */2 * * *'
9
10
+jobs:
11
+ build:
12
+ runs-on: macOS-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
+ - uses: actions/setup-node@v4
18
+ - name: Set git user
19
+ run: |
20
+ git config --global user.email cedric@ninja-squad.com
21
+ git config --global user.name cexbrayat
22
+ git remote set-url origin https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/cexbrayat/angular-cli-ssr-diff.git
23
+ env:
24
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
+ - name: Generate new version
26
+ run: ./newVersion.sh
.gitignore
@@ -0,0 +1 @@
+ponyracer/README.md
0 commit comments