From f747b922dd45b622fbee515246ab49331efb156b Mon Sep 17 00:00:00 2001 From: Jeremy Henry Date: Mon, 9 Sep 2024 10:32:04 -0700 Subject: [PATCH] Remove redundant workflow --- .github/workflows/push-to-branch.yaml | 13 ------------ .github/workflows/push-to-master.yaml | 13 ------------ .github/workflows/release.yaml | 30 --------------------------- 3 files changed, 56 deletions(-) delete mode 100644 .github/workflows/push-to-branch.yaml delete mode 100644 .github/workflows/push-to-master.yaml delete mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/push-to-branch.yaml b/.github/workflows/push-to-branch.yaml deleted file mode 100644 index c86e076..0000000 --- a/.github/workflows/push-to-branch.yaml +++ /dev/null @@ -1,13 +0,0 @@ -name: Push2Branch - -on: - push: - branches-ignore: - - "master" - -jobs: - push-to-branch: - uses: rcsb/devops-cicd-github-actions/.github/workflows/push-to-branch.yaml@master - with: - distribution: "${{ github.ref_name }}_idmapper" - type: "skip" \ No newline at end of file diff --git a/.github/workflows/push-to-master.yaml b/.github/workflows/push-to-master.yaml deleted file mode 100644 index e136bf6..0000000 --- a/.github/workflows/push-to-master.yaml +++ /dev/null @@ -1,13 +0,0 @@ -name: Push2Master - -on: - push: - branches: - - "master" - -jobs: - push-to-master: - uses: rcsb/devops-cicd-github-actions/.github/workflows/push-to-master.yaml@master - with: - distribution: "production_idmapper" - type: "skip" \ No newline at end of file diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml deleted file mode 100644 index d582236..0000000 --- a/.github/workflows/release.yaml +++ /dev/null @@ -1,30 +0,0 @@ -name: Release - -on: - workflow_dispatch: - inputs: - major: - description: 'Major version' - required: true - minor: - description: 'Minor version' - required: true - patch: - description: 'Patch version' - required: true - skip-tests: - description: 'Skip tests' - type: boolean - default: true - required: false - -jobs: - release: - uses: rcsb/devops-cicd-github-actions/.github/workflows/release.yaml@master - with: - major: ${{ inputs.major }} - minor: ${{ inputs.minor }} - patch: ${{ inputs.patch }} - skip-tests: ${{ inputs.skip-tests }} - distribution: "production_idmapper" - type: "jar" \ No newline at end of file