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 54716a8 commit 8ce078eCopy full SHA for 8ce078e
.github/workflows/sync-main.yml
@@ -16,6 +16,8 @@ jobs:
16
steps:
17
- name: Checkout
18
uses: actions/checkout@v3
19
+ with:
20
+ fetch-depth: 0
21
- name: Git config
22
shell: bash
23
run: |
@@ -25,12 +27,13 @@ jobs:
25
27
26
28
29
set -x
- git fetch
30
+ git fetch --unshallow
31
git remote add upstream https://github.com/github/codeql.git
- git fetch upstream --tags --force
32
+ git fetch upstream --unshallow --tags --force
33
- name: Sync Main
34
35
36
+ git log --oneline -20
37
git merge codeql-cli/latest
38
git push origin main
39
git push origin --tags --force
0 commit comments