Skip to content
This repository has been archived by the owner on Feb 2, 2024. It is now read-only.

Commit

Permalink
Feature/hms 1562 check opslevel for repos (#8)
Browse files Browse the repository at this point in the history
* Add Codeowners and renovate

* Save

* Sav
  • Loading branch information
igorDolzh authored Oct 6, 2023
1 parent 85e1fa7 commit 9f837b1
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/pr-help.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# THIS CODE WAS AUTOGENERATED. DO NOT MODIFY THIS FILE DIRECTLY
# THE SOURCE CODE LIVES IN A DIFFERENT REPOSITORY:
# - centralized-templates
# FILE STEWARD: @pleo-io/devx

name: Check PR
on:
pull_request:
types:
- assigned
- unassigned
- labeled
- unlabeled
- opened
- edited
- closed
- reopened
- synchronize
- ready_for_review
- locked
- unlocked
- review_requested
- review_request_removed

concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
validate-pr:
timeout-minutes: 5
name: Validate PR
permissions: write-all
runs-on: ubuntu-latest

steps:
- name: Setup
uses: actions/setup-node@v3

- name: Run Danger
run: npx danger ci -v --dangerfile pleo-io/danger-config/dangerfile.ts@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DANGER_GITHUB_API_BASE_URL: https://api.github.com

0 comments on commit 9f837b1

Please sign in to comment.