forked from rapid7/metasploit-framework
-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (46 loc) · 1.65 KB
/
sync_upstream.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: sync_upstream
on:
schedule:
# actually, ~5 minutes is the highest
# effective frequency you will get
- cron: '*/180 * * * *'
workflow_dispatch: # on button click
jobs:
merge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.VUL_DRILLER_TOKEN }}
- name: config
run: |
git config --global user.name 'certcc-ghbot'
git config --global user.email '[email protected]'
- name: pull
run: |
# "git checkout master" is unnecessary, already here by default
git pull --unshallow # this option is very important, you would get
# complains about unrelated histories without it.
# (but actions/checkout@v2 can also be instructed
# to fetch all git depth right from the start)
- name: fetch upstream
run: |
git remote add upstream https://github.com/rapid7/metasploit-framework.git
git fetch upstream
- name: delete tags
run: |
git tag -d $(git tag -l "20*")
git tag -d $(git tag -l "4*")
git tag -d $(git tag -l "5*")
git tag -d $(git tag -l "6*")
git tag -d $(git tag -l "sprint*")
git tag -d $(git tag -l "blog*")
git tag -d $(git tag -l "v4*")
git tag -d $(git tag -l "show*")
git tag -d $(git tag -l "cth*")
git tag -d $(git tag -l "hard*")
- name: merge and push
run: |
git checkout master
git merge --no-edit upstream/master
git push origin master