update ArcGISpro.zip UI #739
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
# Copyright (c) Microsoft Corporation. | |
# Licensed under the MIT License. | |
--- | |
name: super-linter | |
# | |
# Documentation: | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
# | |
on: | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: lint-codebase | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Full git history is needed to get a proper list of changed files within `super-linter` | |
- uses: github/super-linter/slim@v5 # use the slim linter since we don't use rust, dotenv, armttk, pwsh, or c# | |
env: | |
VALIDATE_ALL_CODEBASE: true | |
VALIDATE_BASH: true | |
VALIDATE_GITHUB_ACTIONS: true | |
VALIDATE_MARKDOWN: true | |
VALIDATE_YAML: true | |
DEFAULT_BRANCH: main | |
FILTER_REGEX_EXCLUDE: ".github/dependabot.yml" | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |