aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJeremy Davis <jeremy.davis@sonarsource.com>2020-05-07 10:25:35 +0200
committersonartech <sonartech@sonarsource.com>2020-05-07 20:03:44 +0000
commita684f6e050ad537e268657951394c848f896ee1a (patch)
treeac564d70d3849660b760cad3f33746fe2d627d6a /.github
parentbc37c508122484e913e16635ba5739c9ae27aa07 (diff)
downloadsonarqube-a684f6e050ad537e268657951394c848f896ee1a.tar.gz
sonarqube-a684f6e050ad537e268657951394c848f896ee1a.zip
Revert "Add 8.3 sync github action"
This reverts commit 0172ec03fa36047002e0dab7d18260fe0679f1de.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/sync-8.3-branch.yml30
1 files changed, 0 insertions, 30 deletions
diff --git a/.github/workflows/sync-8.3-branch.yml b/.github/workflows/sync-8.3-branch.yml
deleted file mode 100644
index 7915440a648..00000000000
--- a/.github/workflows/sync-8.3-branch.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-name: Sync 8.3 branch
-on:
- schedule:
- # at 20:00 daily
- - cron: "0 20 * * *"
-jobs:
- sync_lts:
- # prevent job to run on public repository sonarsource/sonarqube
- if: github.repository == 'sonarsource/sonar-enterprise'
- runs-on: ubuntu-latest
- name: Sync 8.3 branch of sonarsource/sonar-enterprise with sonarsource/sonarqube
- steps:
- - name: Fetch code
- uses: actions/checkout@v2
- with:
- token: ${{ secrets.GITHUB_ORG_TOKEN }}
- ref: master
- path: repo
- - name: Sync LTS branch
- run: ./repo/private/sync-public-git-branches.sh
- env:
- GITHUB_ORG_TOKEN: ${{ secrets.GITHUB_ORG_TOKEN }}
- BRANCH_NAME: branch-8.3
- - name: Notify failures on Slack
- if: failure()
- uses: Ilshidur/action-slack@2.0.0
- env:
- SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
- with:
- args: "Nightly public sync failed, see the logs at https://github.com/SonarSource/sonar-enterprise/actions"