patch2 #8
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
# yamllint disable rule:comments-indentation | |
name: MasterCI | |
on: # yamllint disable-line rule:truthy | |
push | |
jobs: | |
CherryPick: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set envs | |
# https://docs.github.com/en/actions/learn-github-actions/workflow-commands-for-github-actions#multiline-strings | |
run: | | |
echo 1 | |
- name: Check out repository code | |
uses: ClickHouse/checkout@v1 | |
with: | |
clear-repository: true | |
token: ${{secrets.ROBOT_CLICKHOUSE_COMMIT_TOKEN}} | |
fetch-depth: 0 | |
- name: Auto-release | |
run: | | |
cd "$GITHUB_WORKSPACE/tests/ci" | |
python3 auto_release.py --release-after-days=3 | |
- name: Cleanup | |
if: always() | |
run: | | |
docker ps --quiet | xargs --no-run-if-empty docker kill ||: | |
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||: | |
sudo rm -fr "$TEMP_PATH" |