-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,29 @@ | ||
name: PR notice | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- opened | ||
paths: | ||
- "chart/orchestrator/" | ||
|
||
jobs: | ||
comment: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: | | ||
gh pr comment -b " \ | ||
📢 Repository Notice \ | ||
This repository is now dedicated to maintaining the stable-1.1.x version of the Orchestrator, which is deployed using a Helm chart. \ | ||
\ | ||
⚠️ Important: The installation method for Orchestrator 1.2.x has been changed to be operator-based. Development for this version now happens in the Orchestrator Helm Operator repository. \ | ||
\ | ||
Additionally, this repository will continue to be the home for developing the orchestrator-k8s Helm chart. \ | ||
\ | ||
If this change includes changes to the orchestrator helm chart, please \ | ||
close the PR and send it to https://parodos-dev/orchestrator-helm-operator instead" | ||
env: | ||
- env: | ||
GH_TOKEN: ${{ github.token }} | ||
run: | | ||
cat << EOF | gh pr comment ${{ github.event.number }} -F - | ||
📢 Repository Notice | ||
This repository is now dedicated to maintaining the stable-1.1.x version of the Orchestrator, which is deployed using a Helm chart. | ||
⚠️ Important: The installation method for Orchestrator 1.2.x has been changed to be operator-based. | ||
Development for this version now happens in the Orchestrator Helm Operator repository. | ||
Additionally, this repository will continue to be the home for developing the orchestrator-k8s Helm chart. | ||
If this change includes changes to the orchestrator helm chart, please | ||
close the PR and send it to https://parodos-dev/orchestrator-helm-operator instead" | ||
EOF | ||