Skip to content

Commit

Permalink
move everything under the workflows dir
Browse files Browse the repository at this point in the history
  • Loading branch information
cewert committed Nov 26, 2024
1 parent 50a1267 commit e667096
Show file tree
Hide file tree
Showing 17 changed files with 16 additions and 16 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ on:

jobs:
dev:
uses: ./.github/actions/build-dev.yml
uses: ./.github/workflows/actions/build-dev.yml
2 changes: 1 addition & 1 deletion .github/workflows/build-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ on:

jobs:
prod:
uses: ./.github/actions/build-prod.yml
uses: ./.github/workflows/actions/build-prod.yml
2 changes: 1 addition & 1 deletion .github/workflows/lint-brightscript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ on:

jobs:
run:
uses: ./.github/actions/lint-brightscript.yml
uses: ./.github/workflows/actions/lint-brightscript.yml
2 changes: 1 addition & 1 deletion .github/workflows/lint-json.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ on:

jobs:
run:
uses: ./.github/actions/lint-json.yml
uses: ./.github/workflows/actions/lint-json.yml
2 changes: 1 addition & 1 deletion .github/workflows/lint-markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ on:

jobs:
run:
uses: ./.github/actions/lint-markdown.yml
uses: ./.github/workflows/actions/lint-markdown.yml
2 changes: 1 addition & 1 deletion .github/workflows/lint-spelling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ on:

jobs:
run:
uses: ./.github/actions/lint-spelling.yml
uses: ./.github/workflows/actions/lint-spelling.yml
2 changes: 1 addition & 1 deletion .github/workflows/lint-translation-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ on:

jobs:
run:
uses: ./.github/actions/lint-translation-files.yml
uses: ./.github/workflows/actions/lint-translation-files.yml
2 changes: 1 addition & 1 deletion .github/workflows/roku-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ env:

jobs:
static:
uses: ./.github/actions/roku-analysis.yml
uses: ./.github/workflows/actions/roku-analysis.yml
16 changes: 8 additions & 8 deletions .github/workflows/validate-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,26 @@ on:
jobs:
lint-brightscript:
if: contains(github.event.pull_request.labels.*.name, 'dependencies')
uses: ./.github/actions/lint-brightscript.yml
uses: ./.github/workflows/actions/lint-brightscript.yml
lint-json:
if: contains(github.event.pull_request.labels.*.name, 'dependencies')
uses: ./.github/actions/lint-json.yml
uses: ./.github/workflows/actions/lint-json.yml
lint-markdown:
if: contains(github.event.pull_request.labels.*.name, 'dependencies')
uses: ./.github/actions/lint-markdown.yml
uses: ./.github/workflows/actions/lint-markdown.yml
lint-spelling:
if: contains(github.event.pull_request.labels.*.name, 'dependencies')
uses: ./.github/actions/lint-spelling.yml
uses: ./.github/workflows/actions/lint-spelling.yml
lint-translation-files:
if: contains(github.event.pull_request.labels.*.name, 'dependencies')
uses: ./.github/actions/lint-translation-files.yml
uses: ./.github/workflows/actions/lint-translation-files.yml
build-dev:
if: contains(github.event.pull_request.labels.*.name, 'dependencies')
uses: ./.github/actions/build-dev.yml
uses: ./.github/workflows/actions/build-dev.yml
build-prod:
if: contains(github.event.pull_request.labels.*.name, 'dependencies')
uses: ./.github/actions/build-prod.yml
uses: ./.github/workflows/actions/build-prod.yml
roku-analysis:
if: contains(github.event.pull_request.labels.*.name, 'dependencies')
uses: ./.github/actions/roku-analysis.yml
uses: ./.github/workflows/actions/roku-analysis.yml

0 comments on commit e667096

Please sign in to comment.