diff --git a/.github/workflows/on-dev-merge.yml b/.github/workflows/on-dev-merge.yml deleted file mode 100644 index 623467352..000000000 --- a/.github/workflows/on-dev-merge.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Merge on Dev -on: - push: - branches: - - dev -jobs: - transition-issue: - name: Transition Issue - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@master - - - name: Login - uses: atlassian/gajira-login@master - env: - JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} - JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} - JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} - - - name: Find Issue Key - id: find - uses: atlassian/gajira-find-issue-key@master - continue-on-error: true - with: - from: commits - - - name: Transition issue - uses: atlassian/gajira-transition@master - if: ${{ steps.find.outputs.issue }} - with: - issue: ${{ steps.find.outputs.issue }} - transition: "Move to 'Deployed in Integration'"