This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
chore(deps): bump com.android.tools.build:gradle from 8.6.0 to 8.6.1 in /android #446
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: pull_requests | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- edited | |
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: Author Assign | |
uses: toshimaru/auto-author-assign@v2.1.1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Add Reviewer | |
uses: madrapps/add-reviewers@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
reviewers: github.event.repository.owner.login | |
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 Author | |
runs-on: ubuntu-latest | |
timeout-minutes: 4 | |
steps: | |
- name: Approve Dependabot | |
uses: hmarr/auto-approve-action@v4 | |
if: github.actor == 'dependabot[bot]' || github.actor == github.event.repository.owner.login | |
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 | |
with: | |
configuration-path: .github/workflows/actions_settings/pr-labeler.yaml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |