Skip to content

voeg alle repos toe #157

voeg alle repos toe

voeg alle repos toe #157

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
name: Format
jobs:
sonarqube:
name: SonarQube
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v5
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
prettier:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Format Markdown files
run: npx prettier --write "**/*.{md,yaml,yml}"
- name: Commit changes
run: |
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
if [ -n "$(git status --porcelain)" ]; then
git add .
git commit -m 'Format YAML files'
else
echo "No changes to commit"
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Create Pull Request
# uses: peter-evans/create-pull-request@v7
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# commit-message: "Fix formatting issues"
# branch: prettier-fix
# branch-suffix: short-commit-hash
# title: "Prettier: Fix formatting issues"
# body: |
# Fix prettier formattin issues