Skip to content

Commit d0b2f23

Browse files
authored
Merge branch 'main' into sgoedecke/prompt-file
2 parents f79e4e1 + 0df9647 commit d0b2f23

File tree

3 files changed

+27
-4
lines changed

3 files changed

+27
-4
lines changed

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Lint Codebase
4040
id: super-linter
41-
uses: super-linter/super-linter/slim@12150456a73e248bdc94d0794898f94e23127c88
41+
uses: super-linter/super-linter/slim@5119dcd8011e92182ce8219d9e9efc82f16fddb6
4242
env:
4343
DEFAULT_BRANCH: main
4444
FILTER_REGEX_EXCLUDE: dist/**/*
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Release new action version
2+
3+
on:
4+
release:
5+
types: [released]
6+
7+
env:
8+
TAG_NAME: ${{ github.event.release.tag_name }}
9+
permissions:
10+
contents: write
11+
12+
jobs:
13+
update_tag:
14+
name:
15+
Update the major tag to include the ${{ github.event.release.tag_name }}
16+
changes
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Update the ${{ env.TAG_NAME }} tag
20+
uses: actions/publish-action@v0.2.2
21+
with:
22+
source-tag: ${{ env.TAG_NAME }}

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,17 +163,18 @@ repository management, issue tracking, and pull request operations.
163163
steps:
164164
- name: AI Inference with GitHub Tools
165165
id: inference
166-
uses: actions/ai-inference@v1
166+
uses: actions/ai-inference@v1.2
167167
with:
168168
prompt: 'List my open pull requests and create a summary'
169169
enable-github-mcp: true
170+
token: ${{ secrets.USER_PAT }}
170171
```
171172

172173
When MCP is enabled, the AI model will have access to GitHub tools and can
173174
perform actions like searching issues and PRs.
174175

175-
**Note:** MCP integration requires your workflow token to have appropriate
176-
GitHub permissions for the operations the AI will perform.
176+
**Note:** For now, MCP integration cannot be used with the built-in token. You
177+
must pass a GitHub PAT into `token:` instead.
177178

178179
## Inputs
179180

0 commit comments

Comments
 (0)