Skip to content

Commit

Permalink
changed all github actions to on: workflow_dispatch so I could run th…
Browse files Browse the repository at this point in the history
…em in my repo
  • Loading branch information
blulady committed Aug 20, 2022
1 parent ced17fd commit 74364f6
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 16 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/issue-trigger.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Issue Trigger
on:
issues:
types: [opened, assigned]
workflow_dispatch

jobs:
Add-Missing-Labels-To-Issues:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-scss.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Lint SCSS

on:
pull_request:
workflow_dispatch
branches: [gh-pages]
push:
branches: [gh-pages]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/move-closed-issues.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Move Closed Issues
on:
issues:
workflow_dispatch
types:
- closed
jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-instructions.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Add Pull Request Instructions
on:
pull_request:
workflow_dispatch
types: [opened]
branches:
- 'gh-pages'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-trigger.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Pull Request Trigger
on:
pull_request:
workflow_dispatch
types: [closed]
branches:
- 'gh-pages'
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/schedule-daily-1100.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: Schedule Daily 1100

# Run this action every day at 3am Pacific (11 am UTC)
on:
schedule:
- cron: '0 11 * * *'
workflow_dispatch

jobs:
github_data:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/schedule-thu-1100.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ name: Schedule Thursday 1100

# Run this action at 11:00 (3 am Pacific) on the first Thursday of the month.
on:
schedule:
- cron: 0 11 * * 4
workflow_dispatch

jobs:
# This workflow contains a single job called "trim_contirbutors"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/set-pr-labels.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Set PR Labels

on:
pull_request:
workflow_dispatch
types: [opened, edited]
branches:
- 'gh-pages'
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/vrms-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: Update VRMS data

# Run this action every day at 2am Pacific (10 am UTC)
on:
schedule:
- cron: '0 10 * * *'
workflow_dispatch

jobs:
vrms_data:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wr-pr-instructions.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: WR Add Pull Request Instructions
on:
workflow_run:
workflow_dispatch
workflows: ["Add Pull Request Instructions"]
types: [completed]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wr-pull-request-trigger.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: WR Pull Request Trigger
on:
workflow_run:
workflow_dispatch
workflows: ["Pull Request Trigger"]
types: [completed]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wr-set-pr-labels.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: WR Set PR Labels

on:
workflow_run:
workflow_dispatch
workflows: ['Set PR Labels']
types: [completed]

Expand Down

0 comments on commit 74364f6

Please sign in to comment.