-
Notifications
You must be signed in to change notification settings - Fork 8
29 lines (28 loc) · 915 Bytes
/
expectations.yml
File metadata and controls
29 lines (28 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# This action comments on a PR by a community member with the expectations they
# should have for the process. It runs every thirty minutes to find uncommented
# community PRs targeting the main branch. It uses a markdown file in the
# .github folder for the content.
name: Commenting
on:
schedule:
- cron: 0/30 * * * *
permissions:
contents: read
pull-requests: write
jobs:
Expectations:
name: Share Expectations on Community PRs
if: github.repository_owner == 'PowerShell'
runs-on: windows-latest
defaults:
run:
shell: pwsh
steps:
- name: Checkout Repository
id: checkout_repo
uses: actions/checkout@v6
- name: Comment on Community PRs
uses: MicrosoftDocs/PowerShell-Docs/.github/actions/commenting/expectations/v1@main
with:
message_path: .github/messages/expectations.md
token: ${{ github.token }}