Workflow remaster (#2416)

* Workflow remaster (#28)

* set default ref

* only trigger version number if pullrequest

* try skipping just a step

* Workflow remaster (#29)

* set default ref

* only trigger version number if pullrequest

* always run style

* try skipping just a step

* try adding a step so everything continues

* Workflow remaster (#30)

* set default ref

* only trigger version number if pullrequest

* always run style

* try skipping just a step

* try adding a step so everything continues

* maybe this does not fail them

* skip ahead

* do not skip the whole job, just the steps
This commit is contained in:
Matthias Mair 2021-12-04 01:01:18 +01:00 committed by GitHub
parent 6690001e81
commit 6bc3e3ccbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,8 +35,12 @@ jobs:
- name: Checkout Code - name: Checkout Code
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Check version number - name: Check version number
if: ${{ github.event_name == 'pull_request' }}
run: | run: |
python3 ci/check_version_number.py --branch ${{ github.base_ref }} python3 ci/check_version_number.py --branch ${{ github.base_ref }}
- name: Finish
if: always()
run: echo 'done'
pep_style: pep_style:
name: PEP style (python) name: PEP style (python)