Skip to content

Commit af92ebe

Browse files
authored
Merge pull request #139 from github/action-config-validation
Action Config Validation
2 parents 206e3e8 + 7c90dde commit af92ebe

File tree

3 files changed

+400
-1
lines changed

3 files changed

+400
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: actions-config-validation
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: read
11+
pull-requests: write # enable write permissions for pull request comments
12+
13+
jobs:
14+
actions-config-validation:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/[email protected]
18+
19+
- name: actions-config-validation
20+
uses: GrantBirki/[email protected]
21+
with:
22+
comment: "true" # enable comment mode
23+
yaml_schema: "__tests__/schemas/action.schema.yml"
24+
yaml_exclude_regex: "^(?!./action.yml$).*$"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Branch Deploy Action 🚀
22

3-
[![CodeQL](https://github.com/github/branch-deploy/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/github/branch-deploy/actions/workflows/codeql-analysis.yml) [![test](https://github.com/github/branch-deploy/actions/workflows/test.yml/badge.svg)](https://github.com/github/branch-deploy/actions/workflows/test.yml) [![package-check](https://github.com/github/branch-deploy/actions/workflows/package-check.yml/badge.svg)](https://github.com/github/branch-deploy/actions/workflows/package-check.yml) [![lint](https://github.com/github/branch-deploy/actions/workflows/lint.yml/badge.svg)](https://github.com/github/branch-deploy/actions/workflows/lint.yml) [![coverage](./badges/coverage.svg)](./badges/coverage.svg)
3+
[![CodeQL](https://github.com/github/branch-deploy/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/github/branch-deploy/actions/workflows/codeql-analysis.yml) [![test](https://github.com/github/branch-deploy/actions/workflows/test.yml/badge.svg)](https://github.com/github/branch-deploy/actions/workflows/test.yml) [![package-check](https://github.com/github/branch-deploy/actions/workflows/package-check.yml/badge.svg)](https://github.com/github/branch-deploy/actions/workflows/package-check.yml) [![lint](https://github.com/github/branch-deploy/actions/workflows/lint.yml/badge.svg)](https://github.com/github/branch-deploy/actions/workflows/lint.yml) [![actions-config-validation](https://github.com/github/branch-deploy/actions/workflows/actions-config-validation.yml/badge.svg)](https://github.com/github/branch-deploy/actions/workflows/actions-config-validation.yml) [![coverage](./badges/coverage.svg)](./badges/coverage.svg)
44

55
A GitHub Action to enable branch deployments using IssueOps!
66

0 commit comments

Comments
 (0)