Skip to content

Commit

Permalink
Do some debugging, remove not needed workflows for now
Browse files Browse the repository at this point in the history
  • Loading branch information
veeck committed Feb 15, 2023
1 parent 7ca4fa1 commit 0ef5088
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 91 deletions.
39 changes: 0 additions & 39 deletions .github/workflows/automated-tests.yaml

This file was deleted.

33 changes: 0 additions & 33 deletions .github/workflows/codecov-test-suites.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions .github/workflows/depsreview.yaml

This file was deleted.

11 changes: 10 additions & 1 deletion .github/workflows/enforce-pullrequest-rules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,19 @@ jobs:
with:
changeLogPath: "CHANGELOG.md"
skipLabels: "Skip Changelog"
- name: "DEBUG"
run: |
echo "base_ref"
echo ${{ github.base_ref }}
echo "comp"
echo ${{ !contains(github.event.pull_request.labels.*.name, 'question') }}
echo ${{ github.base_ref == 'develop' }}
echo ${{ !contains(github.event.pull_request.labels.*.name, 'question') && github.base_ref == 'develop' }}
- name: "Enforce develop branch"
if: ${{ !contains(github.event.pull_request.labels.*.name, 'question') && github.base_ref == 'develop' }}
run: |
echo "This PR is based against the master branch. Please don't do this. Switch the branch to 'develop'."
echo "This PR is based against the master branch and not a release or hotfix.
Please don't do this. Switch the branch to 'develop'."
exit 1
env:
BASE_BRANCH: ${{ github.base_ref }}

0 comments on commit 0ef5088

Please sign in to comment.