Skip to content

Commit 5960cc0

Browse files
typo
1 parent 4c99fa7 commit 5960cc0

File tree

2 files changed

+32
-31
lines changed

2 files changed

+32
-31
lines changed

.github/workflows

Lines changed: 0 additions & 31 deletions
This file was deleted.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Generate Snippets
2+
'on':
3+
push:
4+
tags:
5+
- '*'
6+
workflow_dispatch: null
7+
jobs:
8+
setup:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
generate-snippets:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Generate Snippets
16+
run: |
17+
./scripts/make_mdx.sh snippets/destination_connectors snippets/source_connectors
18+
- name: Create Pull Request
19+
uses: peter-evans/create-pull-request@v5
20+
with:
21+
token: ${{ secrets.MAKE_PR_TOKEN }}
22+
add-paths: |
23+
snippets
24+
commit-message: Update code snippets
25+
branch: update-code-snippets/$(git rev-parse --abbrev-ref HEAD)
26+
title: 'chore: update code snippets'
27+
assignees: ${{ github.actor }}
28+
reviewers: ${{ github.actor }}
29+
delete-branch: true
30+
body: |
31+
This automated pull request includes updated code snippets.
32+
base: ${{ github.head_ref }}

0 commit comments

Comments
 (0)