Browse Source

misc: Fixed the push and pull_request branch requirements for our CI to run

pull/1086/head
dragonmux 2 years ago
committed by Piotr Esden-Tempski
parent
commit
cf204448bf
  1. 2
      .github/workflows/build-and-upload.yml
  2. 2
      .github/workflows/build-pr.yml

2
.github/workflows/build-and-upload.yml

@ -4,7 +4,7 @@ name: build and upload
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ master ]
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

2
.github/workflows/build-pr.yml

@ -4,7 +4,7 @@ name: build PR
on:
# Triggers the workflow on push or pull request events but only for the main branch
pull_request:
branches: [ master ]
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Loading…
Cancel
Save