forked from hashicorp/terraform-provider-azuread
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
66c01cc
commit ce31587
Showing
15 changed files
with
235 additions
and
45 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
--- | ||
name: Issue Opened Triage | ||
|
||
permissions: | ||
issues: write | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
|
@@ -8,9 +12,9 @@ jobs: | |
issue_triage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: github/[email protected] | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
configuration-path: .github/labeler-issue-triage.yml | ||
enable-versioned-regex: 0 | ||
- uses: actions/checkout@v3 | ||
- uses: github/[email protected] | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
configuration-path: .github/labeler-issue-triage.yml | ||
enable-versioned-regex: 0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: Link Milestone | ||
|
||
on: | ||
pull_request_target: | ||
branches: [main] | ||
types: ['closed'] | ||
|
||
jobs: | ||
link-milestone: | ||
if: github.event.pull_request.merged == true | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
issues: write | ||
steps: | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version-file: .go-version | ||
- run: | | ||
go install github.com/stephybun/link-milestone@latest | ||
link-milestone | ||
env: | ||
PR_NUMBER: ${{ github.event.number }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_REPO: ${{ github.repository }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
name: 'Lock Threads' | ||
|
||
on: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
name: Closed Milestones | ||
|
||
on: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,30 @@ | ||
--- | ||
name: "Pull Request Triage" | ||
|
||
permissions: | ||
pull-requests: write | ||
issues: write | ||
|
||
on: [pull_request_target] | ||
|
||
jobs: | ||
triage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v3 | ||
with: | ||
configuration-path: .github/labeler-pull-request-triage.yml | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
# See also: https://github.com/CodelyTV/pr-size-labeler/pull/26 | ||
- uses: CodelyTV/pr-size-labeler@v1 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
xs_label: 'size/XS' | ||
xs_max_size: '30' | ||
s_label: 'size/S' | ||
s_max_size: '60' | ||
m_label: 'size/M' | ||
m_max_size: '150' | ||
l_label: 'size/L' | ||
l_max_size: '300' | ||
xl_label: 'size/XL' | ||
message_if_xl: '' | ||
- uses: actions/labeler@v3 | ||
with: | ||
configuration-path: .github/labeler-pull-request-triage.yml | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
- uses: CodelyTV/pr-size-labeler@v1 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
xs_label: 'size/XS' | ||
xs_max_size: '30' | ||
s_label: 'size/S' | ||
s_max_size: '60' | ||
m_label: 'size/M' | ||
m_max_size: '150' | ||
l_label: 'size/L' | ||
l_max_size: '300' | ||
xl_label: 'size/XL' | ||
message_if_xl: '' |
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
name: Validate Examples | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: read | ||
|
||
on: | ||
pull_request: | ||
types: ['opened', 'synchronize'] | ||
paths: | ||
- '.github/workflows/validate-examples.yaml' | ||
- 'examples/**' | ||
|
||
concurrency: | ||
group: 'examples-${{ github.head_ref }}' | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
website-lint: | ||
runs-on: [custom, linux, large] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version-file: ./.go-version | ||
- run: bash scripts/gogetcookie.sh | ||
- run: make tools | ||
- run: make validate-examples |
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
Oops, something went wrong.