chore(deps): bump codecov/codecov-action from 5.4.0 to 5.4.2 #118
Workflow file for this run
This file contains hidden or 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: pull_requests | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
pull-requests: write | |
jobs: | |
branch-name: | |
name: 🔀 Check branch name | |
runs-on: ubuntu-latest | |
timeout-minutes: 4 | |
steps: | |
- name: Assert Branch Naming Convention | |
uses: deepakputhraya/action-branch-name@master | |
with: | |
allowed_prefixes: "feature,feat,test,tests,fix,bug,chore,dependabot,deps,ci,build,docs,doc,style,refactor" | |
ignore: main,release | |
min_length: 5 | |
assign: | |
name: ✍🏻 Assign PR Author and Reviewer | |
runs-on: ubuntu-latest | |
timeout-minutes: 4 | |
steps: | |
- name: Add Reviewer and Author Assign | |
uses: kentaro-m/auto-assign-action@v2.0.0 | |
with: | |
configuration-path: '.github/workflows/actions_settings/auto-assign.yaml' | |
pr-title: | |
name: 📰 Check PR Title | |
runs-on: ubuntu-latest | |
timeout-minutes: 4 | |
steps: | |
- name: Lint Pull Request Title | |
uses: amannn/action-semantic-pull-request@v5.5.3 | |
with: | |
requireScope: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
auto-approve: | |
name: 🎟️ Approve Dependabot and repository owner | |
runs-on: ubuntu-latest | |
timeout-minutes: 4 | |
steps: | |
- name: Approve Dependabot and owner | |
uses: hmarr/auto-approve-action@v4 | |
if: github.actor == 'dependabot[bot]' || github.actor == 'tsinis' | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
pr-labels: | |
name: 🏷️ Add PR Labels | |
runs-on: ubuntu-latest | |
needs: branch-name | |
timeout-minutes: 4 | |
steps: | |
- name: Detect and add label(s) | |
uses: TimonVS/pr-labeler-action@v5.0.0 | |
with: | |
configuration-path: .github/workflows/actions_settings/pr-labeler.yaml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |