Skip to content

Commit

Permalink
only run github actions on PRs and master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
hotzenklotz committed Oct 24, 2024
1 parent 4a9811e commit d0eed33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_test_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ name: CI Pipeline
on:
push:
branches:
- '*'
- master
pull_request:
branches:
- '*'
workflow_dispatch:

env:
USER_NAME: circleci
USER_NAME: root
USER_UID: 1000
USER_GID: 1000
TZ: Europe/Berlin
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_PASS: ${{ secrets.DOCKER_PASS }}

jobs:
static_frontent_code_checks:
static_frontend_code_checks:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
Expand Down

0 comments on commit d0eed33

Please sign in to comment.