mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 18:41:08 +00:00
Merge branch 'main' into develop
This commit is contained in:
2
.github/workflows/cleanup.yml
vendored
2
.github/workflows/cleanup.yml
vendored
@@ -65,6 +65,8 @@ jobs:
|
|||||||
'depsreview.yml',
|
'depsreview.yml',
|
||||||
'label-actions.yml',
|
'label-actions.yml',
|
||||||
'lock.yml',
|
'lock.yml',
|
||||||
|
'new-issue.yml',
|
||||||
|
'new-pr.yml',
|
||||||
'release.yml',
|
'release.yml',
|
||||||
'sonarcloud.yml',
|
'sonarcloud.yml',
|
||||||
'stale.yml'
|
'stale.yml'
|
||||||
|
23
.github/workflows/new-issue.yml
vendored
Normal file
23
.github/workflows/new-issue.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
name: "Issues - Post to Gitter"
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
jobs:
|
||||||
|
post-to-gitter:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Send issue to Gitter
|
||||||
|
id: issue-gitter
|
||||||
|
uses: JC5/firefly-iii-dev@main
|
||||||
|
with:
|
||||||
|
action: 'ff3:post-to-gitter issue'
|
||||||
|
output: ''
|
||||||
|
env:
|
||||||
|
FIREFLY_III_ROOT: /github/workspace
|
||||||
|
GH_TOKEN: ""
|
||||||
|
ISSUE_NUMBER: ${{ github.event.issue.number }}
|
||||||
|
ISSUE_TITLE: ${{ github.event.issue.title }}
|
||||||
|
ISSUE_USER: ${{ github.event.issue.user.login }}
|
||||||
|
REPOSITORY: "firefly-iii/firefly-iii"
|
||||||
|
GITTER_TOKEN: ${{ secrets.GITTER_TOKEN }}
|
23
.github/workflows/new-pr.yml
vendored
Normal file
23
.github/workflows/new-pr.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
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 }}
|
Reference in New Issue
Block a user