Skip to content

Merge pull request #114 from atsign-foundation/dependabot/github_acti… #50

Merge pull request #114 from atsign-foundation/dependabot/github_acti…

Merge pull request #114 from atsign-foundation/dependabot/github_acti… #50

Workflow file for this run

name: shellcheck
# Runs the workflow on the below events:
# 1. on pull request raised to trunk branch.
# 2. on push event to trunk branch.
on:
push:
branches:
- trunk
pull_request:
branches:
- trunk
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@cd81f4475ab741e097ec0fe73b692f3e49d66b8c # v2.0.0
env:
SHELLCHECK_OPTS: -e SC1090 -e SC1091