Create Aleksyeus.is-cool.dev.json #4185
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: Validation | |
on: | |
pull_request_target: | |
concurrency: | |
group: ${{ github.ref }}-validation | |
cancel-in-progress: true | |
jobs: | |
dns: | |
name: DNS | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- id: create_token | |
uses: tibdex/github-app-token@v2 | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
private_key: ${{ secrets.PRIVATE_KEY }} | |
- name: Check DNS | |
id: dns_check | |
uses: koenrh/dnscontrol-action@v3 | |
with: | |
args: check | |
config_file: "dnsconfig.js" | |
- name: Add Validated DNS Label | |
if: ${{ steps.dns_check.outcome == 'success' }} | |
uses: actions-ecosystem/action-add-labels@v1 | |
with: | |
labels: "Validated DNS" | |
github_token: ${{ steps.create_token.outputs.token }} | |
- name: Remove Invalid DNS Label | |
if: ${{ steps.dns_check.outcome == 'success' }} | |
uses: actions-ecosystem/action-remove-labels@v1 | |
with: | |
labels: "Invalid DNS" | |
github_token: ${{ steps.create_token.outputs.token }} | |
- name: Add Invalid DNS Label | |
if: ${{ failure() }} | |
uses: actions-ecosystem/action-add-labels@v1 | |
with: | |
labels: "Invalid DNS" | |
github_token: ${{ steps.create_token.outputs.token }} | |
- name: Remove Validated DNS Label | |
if: ${{ failure() }} | |
uses: actions-ecosystem/action-remove-labels@v1 | |
with: | |
labels: "Validated DNS" | |
github_token: ${{ steps.create_token.outputs.token }} | |
json: | |
name: JSON | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- id: create_token | |
uses: tibdex/github-app-token@v2 | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
private_key: ${{ secrets.PRIVATE_KEY }} | |
- name: JSON Syntax Check | |
id: json_check | |
uses: limitusus/json-syntax-check@v2 | |
with: | |
pattern: "\\.json$" | |
env: | |
BASE: "domains/" | |
- name: Add Validated JSON Label | |
if: ${{ steps.json_check.outcome == 'success' }} | |
uses: actions-ecosystem/action-add-labels@v1 | |
with: | |
labels: "Validated JSON" | |
github_token: ${{ steps.create_token.outputs.token }} | |
- name: Remove Invalid JSON Label | |
if: ${{ steps.json_check.outcome == 'success' }} | |
uses: actions-ecosystem/action-remove-labels@v1 | |
with: | |
labels: "Invalid JSON" | |
github_token: ${{ steps.create_token.outputs.token }} | |
- name: Add Invalid JSON Label | |
if: ${{ failure() }} | |
uses: actions-ecosystem/action-add-labels@v1 | |
with: | |
labels: "Invalid JSON" | |
github_token: ${{ steps.create_token.outputs.token }} | |
- name: Remove Validated JSON Label | |
if: ${{ failure() }} | |
uses: actions-ecosystem/action-remove-labels@v1 | |
with: | |
labels: "Validated JSON" | |
github_token: ${{ steps.create_token.outputs.token }} |