Skip to content

Commit 645f7eb

Browse files
committed
chore: add deprecation warnings
1 parent 4164841 commit 645f7eb

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/build-and-push-assets.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build and push assets
1+
name: [DEPRECATED] Build and push assets
22

33
on:
44
workflow_call:
@@ -99,6 +99,9 @@ jobs:
9999
is_development_branch_last_commit: ${{ github.sha == steps.detect_development_branch_last_commit.outputs.development_branch_last_commit && 'yes' || 'no' }}
100100
is_moved_tag: ${{ (github.ref_type == 'tag' && contains(steps.detect_tag_annotation.outputs.tag_annotation, env.MOVED_TAG_ANNOTATION_PATTERN)) && 'yes' || 'no' }}
101101
steps:
102+
- name: Deprecation warning
103+
run: echo "::warning::This workflow is deprecated and will be removed soon. Use .github/workflows/build-push.yml instead."
104+
102105
- name: Checkout repository
103106
uses: actions/checkout@v4
104107
with:

.github/workflows/build-assets-compilation.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Assets compilation
1+
name: [DEPRECATED] Assets compilation
22

33
on:
44
workflow_call:
@@ -65,6 +65,9 @@ jobs:
6565
env:
6666
NODE_CACHE_MODE: ''
6767
steps:
68+
- name: Deprecation warning
69+
run: echo "::warning::This workflow is deprecated and will be removed soon. Use .github/workflows/build-push.yml instead."
70+
6871
- name: PACKAGE_MANAGER deprecation warning
6972
if: ${{ inputs.PACKAGE_MANAGER != '' }}
7073
run: |

.github/workflows/build-plugin-archive.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Create plugin archive
1+
name: [DEPRECATED] Create plugin archive
22

33
on:
44
workflow_call:
@@ -96,6 +96,9 @@ jobs:
9696
# In resulting builds, you will likely want to ship the actual install location and remove the source directory.
9797
COMPOSER_MIRROR_PATH_REPOS: 1
9898
steps:
99+
- name: Deprecation warning
100+
run: echo "::warning::This workflow is deprecated and will be removed soon. Use .github/workflows/build-push.yml instead."
101+
99102
- name: Checkout
100103
uses: actions/checkout@v4
101104

0 commit comments

Comments
 (0)