惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
V
V2EX
Jina AI
Jina AI
爱范儿
爱范儿
M
MIT News - Artificial intelligence
量子位
L
LangChain Blog
Google DeepMind News
Google DeepMind News
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
腾讯CDC
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss

Vercel News

Vercel Open Source Program: Winter 2026 cohort How Notion Workers run untrusted code at scale with Vercel Sandbox How we run Vercel's CDN in front of Discourse From idea to secure checkout in minutes with Stripe Building Slack agents can be easy Scaling redirects to infinity on Vercel Advancing Python typing Gamma builds design-first agents with Vercel How Avalara turns pipe dreams into patent-pending with v0 Keeping community human while scaling with agents How OpenEvidence built a healthcare AI that physicians actually trust Security boundaries in agentic architectures Skills Night: 69,000+ ways agents are getting smarter Video Generation with AI Gateway We Ralph Wiggumed WebStreams to make them 10x faster How Stably ships AI testing agents in hours, not weeks How we built AEO tracking for coding agents Anyone can build agents, but it takes a platform to run them Introducing Geist Pixel The Vercel AI Accelerator is back with $6m in credits Making agent-friendly pages with content negotiation The Vercel OSS Bug Bounty program is now available Introducing the new v0 Run untrusted code with Vercel Sandbox, now generally available How Stripe built a game-changing app in a single flight with v0 How Sensay went from zero to product in six weeks AGENTS.md outperforms skills in our agent evals Agent skills explained: An FAQ Testing if "bash is all you need" AWS databases are now live on the Vercel Marketplace and v0
AI SDK and AI Gateway now integrated in GitHub Actions - ...
Gregor MartynusTech Lead · 2025-09-08 · via Vercel News

1 min read

You can now use the vercel/ai-action@v2 GitHub Action to access the AI SDK and AI Gateway, generating text or structured JSON directly in your workflows by specifying a prompt, model, and api-key.

This integration enables new AI-powered use cases for GitHub Actions, such as summarizing what made it into a release, providing a light PR code review, moderating comments, or finding duplicate or relevant issues.

triage.yml

on:

issues:

types: [opened]

jobs:

generate-text:

runs-on: ubuntu-latest

steps:

- uses: vercel/ai-action@v2

id: prompt

with:

model: "openai/gpt-5"

api-key: ${{ secrets.AI_GATEWAY_API_KEY }}

prompt: |

Is this an urgent issue? Say "yes" if it's preventing a user from doing something critical.

Issue Title: ${{ github.event.issue.title }}

Issue Body: ${{ github.event.issue.body }}

- if: steps.prompt.outputs.text == 'yes'

run: gh issue edit ${{ github.event.issue.html_url }} --add-label urgent

env:

GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Learn more and see examples in the Github Actions marketplace, view the source code, or read the walkthrough guide.

Start using Vercel AI Gateway

Unify access to hundreds of AI models through one endpoint with automatic failover, simplified authentication, and no key management.

Get an API Key