diff --git a/.github/workflows/actions/build-dev.yml b/.github/workflows/_build-dev.yml similarity index 100% rename from .github/workflows/actions/build-dev.yml rename to .github/workflows/_build-dev.yml diff --git a/.github/workflows/actions/build-prod.yml b/.github/workflows/_build-prod.yml similarity index 100% rename from .github/workflows/actions/build-prod.yml rename to .github/workflows/_build-prod.yml diff --git a/.github/workflows/actions/lint-brightscript.yml b/.github/workflows/_lint-brightscript.yml similarity index 100% rename from .github/workflows/actions/lint-brightscript.yml rename to .github/workflows/_lint-brightscript.yml diff --git a/.github/workflows/actions/lint-json.yml b/.github/workflows/_lint-json.yml similarity index 100% rename from .github/workflows/actions/lint-json.yml rename to .github/workflows/_lint-json.yml diff --git a/.github/workflows/actions/lint-markdown.yml b/.github/workflows/_lint-markdown.yml similarity index 100% rename from .github/workflows/actions/lint-markdown.yml rename to .github/workflows/_lint-markdown.yml diff --git a/.github/workflows/actions/lint-spelling.yml b/.github/workflows/_lint-spelling.yml similarity index 100% rename from .github/workflows/actions/lint-spelling.yml rename to .github/workflows/_lint-spelling.yml diff --git a/.github/workflows/actions/lint-translation-files.yml b/.github/workflows/_lint-translation-files.yml similarity index 100% rename from .github/workflows/actions/lint-translation-files.yml rename to .github/workflows/_lint-translation-files.yml diff --git a/.github/workflows/actions/roku-analysis.yml b/.github/workflows/_roku-analysis.yml similarity index 100% rename from .github/workflows/actions/roku-analysis.yml rename to .github/workflows/_roku-analysis.yml diff --git a/.github/workflows/build-dev.yml b/.github/workflows/build-dev.yml index 2b9c18fc2..cb13dd93e 100644 --- a/.github/workflows/build-dev.yml +++ b/.github/workflows/build-dev.yml @@ -6,4 +6,4 @@ on: jobs: dev: - uses: ./.github/workflows/actions/build-dev.yml + uses: ./.github/workflows/_build-dev.yml diff --git a/.github/workflows/build-prod.yml b/.github/workflows/build-prod.yml index 181827b23..11b981caa 100644 --- a/.github/workflows/build-prod.yml +++ b/.github/workflows/build-prod.yml @@ -9,4 +9,4 @@ on: jobs: prod: - uses: ./.github/workflows/actions/build-prod.yml + uses: ./.github/workflows/_build-prod.yml diff --git a/.github/workflows/lint-brightscript.yml b/.github/workflows/lint-brightscript.yml index 7636a4615..d156b6a47 100644 --- a/.github/workflows/lint-brightscript.yml +++ b/.github/workflows/lint-brightscript.yml @@ -7,4 +7,4 @@ on: jobs: run: - uses: ./.github/workflows/actions/lint-brightscript.yml + uses: ./.github/workflows/_lint-brightscript.yml diff --git a/.github/workflows/lint-json.yml b/.github/workflows/lint-json.yml index 51caed481..82fd668f8 100644 --- a/.github/workflows/lint-json.yml +++ b/.github/workflows/lint-json.yml @@ -7,4 +7,4 @@ on: jobs: run: - uses: ./.github/workflows/actions/lint-json.yml \ No newline at end of file + uses: ./.github/workflows/_lint-json.yml \ No newline at end of file diff --git a/.github/workflows/lint-markdown.yml b/.github/workflows/lint-markdown.yml index 315a75a2f..c00cee4e9 100644 --- a/.github/workflows/lint-markdown.yml +++ b/.github/workflows/lint-markdown.yml @@ -6,4 +6,4 @@ on: jobs: run: - uses: ./.github/workflows/actions/lint-markdown.yml + uses: ./.github/workflows/_lint-markdown.yml diff --git a/.github/workflows/lint-spelling.yml b/.github/workflows/lint-spelling.yml index 12d6b9544..9a74fb681 100644 --- a/.github/workflows/lint-spelling.yml +++ b/.github/workflows/lint-spelling.yml @@ -6,4 +6,4 @@ on: jobs: run: - uses: ./.github/workflows/actions/lint-spelling.yml + uses: ./.github/workflows/_lint-spelling.yml diff --git a/.github/workflows/lint-translation-files.yml b/.github/workflows/lint-translation-files.yml index 2641bf205..ab5b55f4c 100644 --- a/.github/workflows/lint-translation-files.yml +++ b/.github/workflows/lint-translation-files.yml @@ -6,4 +6,4 @@ on: jobs: run: - uses: ./.github/workflows/actions/lint-translation-files.yml + uses: ./.github/workflows/_lint-translation-files.yml diff --git a/.github/workflows/roku-analysis.yml b/.github/workflows/roku-analysis.yml index 87fb685d8..c8e86f9c3 100644 --- a/.github/workflows/roku-analysis.yml +++ b/.github/workflows/roku-analysis.yml @@ -8,4 +8,4 @@ env: jobs: static: - uses: ./.github/workflows/actions/roku-analysis.yml + uses: ./.github/workflows/_roku-analysis.yml diff --git a/.github/workflows/validate-dependencies.yml b/.github/workflows/validate-dependencies.yml index 072a1f503..053c98e25 100644 --- a/.github/workflows/validate-dependencies.yml +++ b/.github/workflows/validate-dependencies.yml @@ -7,26 +7,26 @@ on: jobs: lint-brightscript: if: contains(github.event.pull_request.labels.*.name, 'dependencies') - uses: ./.github/workflows/actions/lint-brightscript.yml + uses: ./.github/workflows/_lint-brightscript.yml lint-json: if: contains(github.event.pull_request.labels.*.name, 'dependencies') - uses: ./.github/workflows/actions/lint-json.yml + uses: ./.github/workflows/_lint-json.yml lint-markdown: if: contains(github.event.pull_request.labels.*.name, 'dependencies') - uses: ./.github/workflows/actions/lint-markdown.yml + uses: ./.github/workflows/_lint-markdown.yml lint-spelling: if: contains(github.event.pull_request.labels.*.name, 'dependencies') - uses: ./.github/workflows/actions/lint-spelling.yml + uses: ./.github/workflows/_lint-spelling.yml lint-translation-files: if: contains(github.event.pull_request.labels.*.name, 'dependencies') - uses: ./.github/workflows/actions/lint-translation-files.yml + uses: ./.github/workflows/_lint-translation-files.yml build-dev: if: contains(github.event.pull_request.labels.*.name, 'dependencies') - uses: ./.github/workflows/actions/build-dev.yml + uses: ./.github/workflows/_build-dev.yml build-prod: if: contains(github.event.pull_request.labels.*.name, 'dependencies') - uses: ./.github/workflows/actions/build-prod.yml + uses: ./.github/workflows/_build-prod.yml roku-analysis: if: contains(github.event.pull_request.labels.*.name, 'dependencies') - uses: ./.github/workflows/actions/roku-analysis.yml + uses: ./.github/workflows/_roku-analysis.yml