2024-07-30 16:01:19 +02:00
|
|
|
name: Sync issues to Freelo
|
2024-07-30 15:26:09 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
issues:
|
|
|
|
types: [opened, edited, closed, reopened, assigned, unassigned]
|
|
|
|
issue_comment:
|
|
|
|
types: [created, edited, deleted]
|
2024-07-30 17:32:24 +02:00
|
|
|
permissions:
|
|
|
|
issues: write
|
2024-07-30 15:26:09 +02:00
|
|
|
jobs:
|
|
|
|
run-my-action:
|
2024-07-30 16:01:19 +02:00
|
|
|
name: Run sync
|
2024-07-30 15:26:09 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: ./
|
|
|
|
with:
|
2024-07-30 15:31:54 +02:00
|
|
|
email: ${{ secrets.FREELO_EMAIL }}
|
|
|
|
api-key: ${{ secrets.FREELO_TOKEN }}
|
2024-07-30 16:01:19 +02:00
|
|
|
project-id: ${{ vars.FREELO_PROJECT }}
|
|
|
|
tasklist-id: ${{ vars.FREELO_TASKLIST }}
|
2024-07-30 15:31:54 +02:00
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|