Skip to content

Commit f4066df

Browse files
authored
Merge branch 'main' into feature/updated-docs-proxy-configuration
2 parents 631607e + 63292c0 commit f4066df

File tree

4 files changed

+117
-16
lines changed

4 files changed

+117
-16
lines changed
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
id:
2+
name: GitOps.PullRequestIssueManagement
3+
description: GitOps.PullRequestIssueManagement primitive
4+
owner:
5+
resource: repository
6+
disabled: false
7+
where:
8+
configuration:
9+
resourceManagementConfiguration:
10+
scheduledSearches:
11+
- description:
12+
frequencies:
13+
- hourly:
14+
hour: 6
15+
filters:
16+
- isIssue
17+
- isOpen
18+
- hasLabel:
19+
label: 'needs author feedback'
20+
- hasLabel:
21+
label: 'Status: No Recent Activity'
22+
- noActivitySince:
23+
days: 3
24+
actions:
25+
- closeIssue
26+
- description:
27+
frequencies:
28+
- hourly:
29+
hour: 6
30+
filters:
31+
- isIssue
32+
- isOpen
33+
- hasLabel:
34+
label: 'needs author feedback'
35+
- noActivitySince:
36+
days: 4
37+
- isNotLabeledWith:
38+
label: 'Status: No Recent Activity'
39+
actions:
40+
- addLabel:
41+
label: 'Status: No Recent Activity'
42+
- addReply:
43+
reply: This issue has been automatically marked as stale because it has been marked as requiring author feedback but has not had any activity for **4 days**. It will be closed if no further activity occurs **within 3 days of this comment**.
44+
- description:
45+
frequencies:
46+
- hourly:
47+
hour: 6
48+
filters:
49+
- isIssue
50+
- isOpen
51+
- hasLabel:
52+
label: 'duplicate'
53+
- noActivitySince:
54+
days: 1
55+
actions:
56+
- addReply:
57+
reply: This issue has been marked as duplicate and has not had any activity for **1 day**. It will be closed for housekeeping purposes.
58+
- closeIssue
59+
eventResponderTasks:
60+
- if:
61+
- payloadType: Issue_Comment
62+
- isAction:
63+
action: Created
64+
- isActivitySender:
65+
issueAuthor: True
66+
- hasLabel:
67+
label: 'needs author feedback'
68+
- isOpen
69+
then:
70+
- addLabel:
71+
label: 'Needs: Attention :wave:'
72+
- removeLabel:
73+
label: 'needs author feedback'
74+
description:
75+
- if:
76+
- payloadType: Issues
77+
- not:
78+
isAction:
79+
action: Closed
80+
- hasLabel:
81+
label: 'Status: No Recent Activity'
82+
then:
83+
- removeLabel:
84+
label: 'Status: No Recent Activity'
85+
description:
86+
- if:
87+
- payloadType: Issue_Comment
88+
- hasLabel:
89+
label: 'Status: No Recent Activity'
90+
then:
91+
- removeLabel:
92+
label: 'Status: No Recent Activity'
93+
description:
94+
- if:
95+
- payloadType: Pull_Request
96+
then:
97+
- inPrLabel:
98+
label: WIP
99+
description:
100+
onFailure:
101+
onSuccess:

.github/workflows/build_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919
- name: Set up Python
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: '3.8'
2323
- name: Install dependencies
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v4
3838
- name: Set up Python
39-
uses: actions/setup-python@v4
39+
uses: actions/setup-python@v5
4040
with:
4141
python-version: '3.8'
4242
- name: Install dependencies

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
# Initializes the CodeQL tools for scanning.
5252
- name: Initialize CodeQL
53-
uses: github/codeql-action/init@v2
53+
uses: github/codeql-action/init@v3
5454
with:
5555
languages: ${{ matrix.language }}
5656
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -64,7 +64,7 @@ jobs:
6464
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
6565
# If this step fails, then you should remove it and run the build manually (see below)
6666
- name: Autobuild
67-
uses: github/codeql-action/autobuild@v2
67+
uses: github/codeql-action/autobuild@v3
6868

6969
# ℹ️ Command-line programs to run using the OS shell.
7070
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -77,6 +77,6 @@ jobs:
7777
# ./location_of_script_within_repo/buildscript.sh
7878

7979
- name: Perform CodeQL Analysis
80-
uses: github/codeql-action/analyze@v2
80+
uses: github/codeql-action/analyze@v3
8181
with:
8282
category: "/language:${{matrix.language}}"

requirements-dev.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-i https://pypi.org/simple
22

3-
astroid==3.0.1 ; python_full_version >= '3.7.2'
3+
astroid==3.0.2 ; python_full_version >= '3.7.2'
44

55
build==1.0.3
66

@@ -14,7 +14,7 @@ dill==0.3.7 ; python_version >= '3.11'
1414

1515
importlib-metadata==6.8.0 ; python_version >= '3.8'
1616

17-
isort==5.12.0
17+
isort==5.13.2
1818

1919
lazy-object-proxy==1.9.0 ; python_version >= '3.7'
2020

@@ -32,9 +32,9 @@ packaging==23.2 ; python_version >= '3.7'
3232

3333
pathlib2==2.3.7.post1
3434

35-
platformdirs==4.0.0 ; python_version >= '3.7'
35+
platformdirs==4.1.0 ; python_version >= '3.7'
3636

37-
pylint==3.0.2
37+
pylint==3.0.3
3838

3939
pyproject-hooks==1.0.0 ; python_version >= '3.7'
4040

@@ -48,7 +48,7 @@ tomli==2.0.1 ; python_version >= '3.7'
4848

4949
tomlkit==0.12.3 ; python_version >= '3.7'
5050

51-
typing-extensions==4.8.0 ; python_version >= '3.7'
51+
typing-extensions==4.9.0 ; python_version >= '3.7'
5252

5353
wrapt==1.16.0 ; python_version >= '3.11'
5454

@@ -60,13 +60,13 @@ aiohttp==3.9.1 ; python_version >= '3.6'
6060

6161
aiosignal==1.3.1 ; python_version >= '3.7'
6262

63-
anyio==4.1.0 ; python_version >= '3.7'
63+
anyio==4.2.0 ; python_version >= '3.7'
6464

6565
async-timeout==4.0.3 ; python_version >= '3.6'
6666

6767
attrs==23.1.0 ; python_version >= '3.7'
6868

69-
azure-core==1.29.5 ; python_version >= '3.7'
69+
azure-core==1.29.6 ; python_version >= '3.7'
7070

7171
azure-identity==1.15.0
7272

@@ -78,7 +78,7 @@ charset-normalizer==3.3.2 ; python_version >= '3.7'
7878

7979
cryptography==41.0.7 ; python_version >= '3.7'
8080

81-
frozenlist==1.4.0 ; python_version >= '3.8'
81+
frozenlist==1.4.1 ; python_version >= '3.8'
8282

8383
h11==0.14.0 ; python_version >= '3.7'
8484

@@ -104,9 +104,9 @@ microsoft-kiota-serialization-json==1.0.0
104104

105105
microsoft-kiota-serialization-text==1.0.0
106106

107-
msal==1.25.0
107+
msal==1.26.0
108108

109-
msal-extensions==1.0.0
109+
msal-extensions==1.1.0
110110

111111
msgraph-core==1.0.0a4
112112

@@ -128,5 +128,5 @@ uritemplate==4.1.1 ; python_version >= '3.6'
128128

129129
urllib3==2.1.0 ; python_version >= '3.7'
130130

131-
yarl==1.9.3 ; python_version >= '3.7'
131+
yarl==1.9.4 ; python_version >= '3.7'
132132

0 commit comments

Comments
 (0)