Make NotificationAccumulator private #1046
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: 'Editor Config format check' | |
on: | |
pull_request: | |
branches: [master] | |
permissions: | |
contents: read | |
jobs: | |
validate: | |
name: Validate Editor Config formatting | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Checkout PR head branch | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Editor Config Validation against PR base commit | |
uses: github/super-linter/slim@e1cb86b6e8d119f789513668b4b30bf17fe1efe4 # v7.2.0 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_EDITORCONFIG: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DEFAULT_BRANCH: ${{ github.event.pull_request.base.sha }} |