Skip to content

Commit

Permalink
ci: allow all workflows to be triggered via GitHub UI (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashishb committed Jul 21, 2024
1 parent e7b075b commit 4bf7f66
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/workflows/adbe-installtests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: AdbeInstallTests

on:
workflow_dispatch:
push:
branches: [master, main]
paths:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/adbe-unittests-api32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ name: AdbeUnitTests-Api32

on:
schedule:
- cron: '0 0 * * 0' # Sunday midnight UTC
- cron: "0 0 * * 0" # Sunday midnight UTC
workflow_dispatch:
pull_request:
branches: [master, main]
paths:
- '.github/workflows/adbe-unittests-api32.yml'
- ".github/workflows/adbe-unittests-api32.yml"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/adbe-unittests-api33.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ name: AdbeUnitTests-Api33
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0' # Sunday midnight UTC
- cron: "0 0 * * 0" # Sunday midnight UTC
pull_request:
branches: [master, main]
paths:
- '.github/workflows/adbe-unittests-api33.yml'
- ".github/workflows/adbe-unittests-api33.yml"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/adbe-unittests-api34.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ name: AdbeUnitTests-Api34

on:
schedule:
- cron: '0 0 * * 0' # Sunday midnight UTC
- cron: "0 0 * * 0" # Sunday midnight UTC
workflow_dispatch:
pull_request:
branches: [master, main]
paths:
- '.github/workflows/adbe-unittests-api34.yml'
- ".github/workflows/adbe-unittests-api34.yml"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/adbe-unittests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: AdbeUnitTests

on:
workflow_dispatch:
push:
branches: [master, main]
paths:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/install-adb-enhanced-from-pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@ name: Install adb-enhanced via pip

on:
schedule:
- cron: '0 0 * * 0' # Sunday midnight UTC
- cron: "0 0 * * 0" # Sunday midnight UTC
workflow_dispatch:
push:
branches: [master, main]
paths:
- '.github/workflows/install-adb-enhanced-from-pip.yml'
- ".github/workflows/install-adb-enhanced-from-pip.yml"
pull_request:
branches: [master, main]
paths:
- '.github/workflows/install-adb-enhanced-from-pip.yml'
- ".github/workflows/install-adb-enhanced-from-pip.yml"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/install-adbe.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Verify that package can be installed on Python

on:
workflow_dispatch:
push:
branches: [master, main]
paths:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint-markdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
name: Lint Markdown

on: # yamllint disable-line rule:truthy
workflow_dispatch:
push:
branches: [master, main]
paths:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint-python.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Lint Python

on:
workflow_dispatch:
push:
branches: [master, main]
paths:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint-yaml.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
name: Lint YAML

on: # yamllint disable-line rule:truthy
workflow_dispatch:
push:
branches: [master, main]
paths:
Expand Down

0 comments on commit 4bf7f66

Please sign in to comment.