Removed empty lines and whitespaces
This commit is contained in:
27
.github/workflows/linter.yml
vendored
27
.github/workflows/linter.yml
vendored
@@ -1,47 +1,22 @@
|
||||
---
|
||||
|
||||
name: Lint Code Base
|
||||
|
||||
on: [ workflow_call ]
|
||||
|
||||
###############
|
||||
# Set the Job #
|
||||
###############
|
||||
jobs:
|
||||
build:
|
||||
# Name the Job
|
||||
name: Lint Code Base
|
||||
# Set the agent to run on
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
############################################
|
||||
# Grant status permission for MULTI_STATUS #
|
||||
############################################
|
||||
permissions:
|
||||
contents: read
|
||||
packages: read
|
||||
statuses: write
|
||||
|
||||
##################
|
||||
# Load all steps #
|
||||
##################
|
||||
steps:
|
||||
##########################
|
||||
# Checkout the code base #
|
||||
##########################
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
# Full git history is needed to get a proper
|
||||
# list of changed files within `super-linter`
|
||||
fetch-depth: 0
|
||||
|
||||
################################
|
||||
# Run Linter against code base #
|
||||
################################
|
||||
- name: Lint Code Base
|
||||
uses: super-linter/super-linter@v5
|
||||
env:
|
||||
VALIDATE_ALL_CODEBASE: false
|
||||
DEFAULT_BRANCH: main
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
||||
|
||||
5
.github/workflows/publish-release.yml
vendored
5
.github/workflows/publish-release.yml
vendored
@@ -1,6 +1,5 @@
|
||||
---
|
||||
name: Publish Release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
@@ -15,9 +14,9 @@ jobs:
|
||||
- name: Publish Release
|
||||
uses: ncipollo/release-action@v1
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
token: ${{secrets.GITHUB_TOKEN}}
|
||||
draft: false
|
||||
prerelease: false
|
||||
name: "0.0.${{ github.run_number }}"
|
||||
tag: "0.0.${{ github.run_number }}"
|
||||
body: "Release 0.0.${{ github.run_number }}"
|
||||
body: "Release 0.0.${{ github.run_number }}"
|
||||
|
||||
Reference in New Issue
Block a user