Add schema for JReleaser 1.15.0 #1671
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: 'Maintenance: Codeowners Detection and Mention' | |
on: | |
pull_request_target: { types: [opened] } | |
issue_comment: { types: [created] } | |
pull_request_review: { types: [submitted] } | |
jobs: | |
codeowners-merge: | |
if: "github.repository == 'SchemaStore/schemastore' && github.event.pull_request.draft == false" | |
runs-on: ubuntu-latest | |
permissions: 'write-all' | |
steps: | |
- uses: 'actions/checkout@v4' | |
- name: 'Run Codeowners check' | |
uses: 'OSS-Docs-Tools/code-owner-self-merge@3d0e2871b850d624a5a433fb7143fe4522ba5486' | |
env: | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
with: | |
merge_method: 'squash' | |
ownerNoPings: '["@hyperupcall"]' |