From e67e7e16749b880bea967efb1abc652ed7fd187c Mon Sep 17 00:00:00 2001 From: Joseph Little Date: Wed, 23 Oct 2024 14:23:21 +0100 Subject: [PATCH] renamed workflow' --- .github/workflows/2 - Apply to Production | 7 ++++++ .github/workflows/2 - Apply to Production.yml | 7 ------ .github/workflows/TEST - Python PR Script.yml | 2 +- .github/workflows/workflow.yml | 25 ------------------- 4 files changed, 8 insertions(+), 33 deletions(-) create mode 100644 .github/workflows/2 - Apply to Production delete mode 100644 .github/workflows/2 - Apply to Production.yml delete mode 100644 .github/workflows/workflow.yml diff --git a/.github/workflows/2 - Apply to Production b/.github/workflows/2 - Apply to Production new file mode 100644 index 0000000..8cccde4 --- /dev/null +++ b/.github/workflows/2 - Apply to Production @@ -0,0 +1,7 @@ +# name: Apply to Production + +# on: +# push: +# tags: +# - 'v*.*.*' # Matches semantic versioning tags like v1.0.0 +# # - '*' # Uncomment to match all tags diff --git a/.github/workflows/2 - Apply to Production.yml b/.github/workflows/2 - Apply to Production.yml deleted file mode 100644 index 79da883..0000000 --- a/.github/workflows/2 - Apply to Production.yml +++ /dev/null @@ -1,7 +0,0 @@ -name: Apply to Production - -on: - push: - tags: - - 'v*.*.*' # Matches semantic versioning tags like v1.0.0 - # - '*' # Uncomment to match all tags diff --git a/.github/workflows/TEST - Python PR Script.yml b/.github/workflows/TEST - Python PR Script.yml index f0024b4..c3cb97c 100644 --- a/.github/workflows/TEST - Python PR Script.yml +++ b/.github/workflows/TEST - Python PR Script.yml @@ -1,4 +1,4 @@ -name: Apply to Staging +name: Python Test on: workflow_dispatch: diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml deleted file mode 100644 index 51145b0..0000000 --- a/.github/workflows/workflow.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: "Sample Workflow" -on: - workflow_dispatch: - inputs: - name: - description: 'Person to greet' - required: true - default: 'You' - home: - description: 'location' - required: false - default: 'The Universe' - -jobs: - job: - name: "Job" - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Hello - shell: pwsh - run: | - echo "Hello ${{ github.event.inputs.name }}!" - echo "- in ${{ github.event.inputs.home }}!"