How to separate conditions for different event types in GitHub Actions – Ubuntu
We have a workflow file: --- name: 'Deploy Test Env' on: pull_request: types: - edited - opened - synchronize branches: - develop paths: - '**.js' jobs: deploy: # yamllint disable rule:line-length name: '[DEV] DEPLOY' runs-on: ubuntu-latest steps: - name: Checkout…