Skip to content

feat(iam): add group role assignment resource #662

feat(iam): add group role assignment resource

feat(iam): add group role assignment resource #662

Workflow file for this run

# This is a lint workflow for documentation and example to help you get started with Actions
name: doc-lint
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
pull_request:
branches: [ master ]
paths:
- 'docs/**'
- '*.md'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a job called "markdownlint"
markdownlint:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Runs actions-markdownlint
- uses: articulate/actions-markdownlint@v1
with:
config: .markdownlint.json
files:
./docs ./*.md
misspell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: misspell
uses: reviewdog/action-misspell@v1
with:
github_token: ${{ secrets.github_token }}
locale: "US"
pattern: |
*.md
*.tf