[CI] Remove 1.0.x from any workflows
This commit is contained in:
25
.github/workflows/ci-dispatcher-1.0.x.yml
vendored
25
.github/workflows/ci-dispatcher-1.0.x.yml
vendored
@@ -1,25 +0,0 @@
|
||||
name: CI Dispatcher (1.0.x)
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 10 * * */3' # Once every 3 day at 10am UTC
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
dispatch_ci_workflow:
|
||||
name: Dispatch CI workflow
|
||||
if: github.repository == 'spring-projects/spring-pulsar'
|
||||
strategy:
|
||||
matrix:
|
||||
# List of active maintenance branches.
|
||||
branch: [ 1.0.x ]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 1
|
||||
- name: Dispatch
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
|
||||
run: gh workflow run ci.yml -r ${{ matrix.branch }}
|
||||
1
.github/workflows/ci-pr.yml
vendored
1
.github/workflows/ci-pr.yml
vendored
@@ -5,7 +5,6 @@ on:
|
||||
branches:
|
||||
- 'main'
|
||||
- '1.1.x'
|
||||
- '1.0.x'
|
||||
paths-ignore:
|
||||
- '.github/**'
|
||||
|
||||
|
||||
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
@@ -5,7 +5,6 @@ on:
|
||||
branches:
|
||||
- 'main'
|
||||
- '1.1.x'
|
||||
- '1.0.x'
|
||||
paths-ignore:
|
||||
- '.github/**'
|
||||
schedule:
|
||||
|
||||
@@ -1,25 +0,0 @@
|
||||
name: Trivy Vulnerability Scan (Repo mode) Dispatcher (1.0.x)
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 15 * * */3' # Once every 3 day at 15:00 UTC
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
dispatch_trivy_workflow:
|
||||
name: Dispatch scan workflow
|
||||
if: github.repository == 'spring-projects/spring-pulsar'
|
||||
strategy:
|
||||
matrix:
|
||||
# List of active maintenance branches.
|
||||
branch: [ 1.0.x ]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 1
|
||||
- name: Dispatch
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
|
||||
run: gh workflow run trivy-scan.yml -r ${{ matrix.branch }}
|
||||
Reference in New Issue
Block a user