mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
24 lines
675 B
YAML
24 lines
675 B
YAML
name: "PRs - Post to Gitter"
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
jobs:
|
|
post-to-gitter:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Send PR to Gitter
|
|
id: issue-gitter
|
|
uses: JC5/firefly-iii-dev@main
|
|
with:
|
|
action: 'ff3:post-to-gitter pr'
|
|
output: ''
|
|
env:
|
|
FIREFLY_III_ROOT: /github/workspace
|
|
GH_TOKEN: ""
|
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
|
PR_TITLE: ${{ github.event.pull_request.title }}
|
|
PR_USER: ${{ github.event.pull_request.user.login }}
|
|
REPOSITORY: "firefly-iii/firefly-iii"
|
|
GITTER_TOKEN: ${{ secrets.GITTER_TOKEN }}
|