Set masakari notification expiry options #231
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: Linter | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Lint bash scripts | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install tools | |
run: sudo apt install --no-install-recommends --yes python3-bashate | |
- name: Get sources | |
uses: actions/checkout@v3 | |
- name: Lint bash scripts | |
run: | | |
bashate --ignore E006 --verbose openstack/tools/create-microceph-vm.sh | |
bashate --ignore E006 --verbose tools/*.sh tools/juju-lnav | |
bashate --ignore E006 --verbose openstack/novarc | |
bashate --ignore E006 --verbose common/ch_channel_map/*.sh | |
check-commit-message: | |
name: Check Commit Message | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get sources | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Check Commit Message | |
run: | | |
./tools/lint-git-messages.sh \ | |
${{ github.event.pull_request.base.sha }} \ | |
${{ github.event.pull_request.head.sha }} |