fix(ui): Skip unexisting envs on deploy to group #6651
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: Enforce commit linting | |
on: | |
pull_request: | |
types: [labeled, unlabeled, opened, edited, synchronize] | |
jobs: | |
commitlint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install earthly | |
uses: earthly/actions-setup@v1 | |
with: | |
version: v0.8.13 | |
- name: Lint commit message | |
run: | | |
make commitlint | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |