Compare commits
9 الالتزامات
c7b60043e2
...
test
المؤلف | SHA1 | التاريخ | |
---|---|---|---|
abca5946c9 | |||
f80e91ee15 | |||
f538ad950b | |||
679114f20d | |||
5723da108b | |||
c05f269cb1 | |||
1e322ee72b | |||
9dffd51dbd | |||
a43bf18450 |
26
.github/workflows/jobs.yml
مباع
Normal file
26
.github/workflows/jobs.yml
مباع
Normal file
@@ -0,0 +1,26 @@
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
job_1:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: "echo jobs${{ github.job }}"
|
||||
|
||||
job_2:
|
||||
runs-on: ubuntu-latest
|
||||
needs: job_1
|
||||
steps:
|
||||
- run: "echo ${{ github.job }}"
|
||||
|
||||
job_3:
|
||||
runs-on: ubuntu-latest
|
||||
needs: job_1
|
||||
steps:
|
||||
- run: "echo ${{ github.job }}"
|
||||
|
||||
job_4:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [job_2,job_3]
|
||||
steps:
|
||||
- run: "echo ${{ github.job }}"
|
3
.github/workflows/main.yml
مباع
3
.github/workflows/main.yml
مباع
@@ -4,9 +4,10 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- test
|
||||
jobs:
|
||||
example-job:
|
||||
|
||||
runs-on: ubuntu
|
||||
steps:
|
||||
- name: print a welcome message
|
||||
run: echo "welcome to our first github actions workflow"
|
||||
|
المرجع في مشكلة جديدة
حظر مستخدم