We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5278949 commit 1a31fbfCopy full SHA for 1a31fbf
.github/workflows/main.yaml
@@ -1,5 +1,9 @@
1
name: Main Ci/CD
2
-on: [push]
+on:
3
+ push:
4
+ branches-ignore:
5
+ - master
6
+ - develop
7
jobs:
8
tests:
9
runs-on: ubuntu-latest
@@ -30,4 +34,15 @@ jobs:
30
34
with:
31
35
target: src/build/php/Dockerfile
32
36
env:
33
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
+ build:
39
+ runs-on: ubuntu-latest
40
+ steps:
41
+ - name: Checkout
42
+ uses: actions/checkout@v3
43
+ - name: Get changed files
44
+ id: get_file_changes
45
+ uses: trilom/[email protected]
46
+ - name: Echo file changes
47
+ run: |
48
+ echo Changed files: ${{ steps.get_file_changes.outputs.files }}
0 commit comments