🚀 Update to 2024.10.17-rc.5
#195
Workflow file for this run
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
name: Selfhosted env file warning | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- '.env.tpl' | |
- 'docker-compose.yml' | |
- 'VERSION' | |
- 'MIN_VERSION' | |
jobs: | |
comment-pr: | |
runs-on: ubuntu-latest | |
if: github.actor != 'supercartofante' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Comment PR | |
id: commenter | |
uses: thollander/actions-comment-pull-request@v1 | |
with: | |
message: | | |
:warning: You are modifying files that should be changed in https://github.com/CartoDB/cloud-native/onprem. | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |