Skip to content

Commit b7058c2

Browse files
Add a new github action
1 parent d1b505d commit b7058c2

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/notes.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Copyright 2021-2022 Signal Messenger, LLC
2+
# SPDX-License-Identifier: AGPL-3.0-only
3+
4+
name: Notes
5+
on:
6+
pull_request:
7+
types: [closed]
8+
9+
jobs:
10+
backport:
11+
name: Add notes to merge commits
12+
if: ${{ github.repository == 'signalapp/Signal-Desktop-Private' }}
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v3
17+
with:
18+
token: ${{ secrets.AUTOMATED_GITHUB_PAT }}
19+
repository: signalapp/Signal-Notes-Action-Private
20+
path: ./.github/actions/note
21+
- name: Run action
22+
uses: ./.github/actions/note
23+
with:
24+
token: ${{ secrets.AUTOMATED_GITHUB_PAT }}
25+
git-email: [email protected]
26+
git-name: Note Bot

0 commit comments

Comments
 (0)