Skip to content

Commit

Permalink
Создан новый workflow, чтобы в канал отправлять уведомления только о …
Browse files Browse the repository at this point in the history
…коммитах в master. Остальные будут отправляться в чат авторов
  • Loading branch information
AShepelevv committed Nov 1, 2024
1 parent 5433ce9 commit 2252f33
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 5 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/on_commit_not_master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Handle new commit
on:
push:
branches-ignore:
- master
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- name: Create resources folder
run: mkdir -p tikz/resource
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v3
with:
root_file: astro-notebook.tex
texlive_version: 2024
latexmk_use_xelatex: true
latexmk_shell_escape: true
args: -bibtex -xelatex -file-line-error -halt-on-error -interaction=nonstopmode
- name: Upload PDF file
id: upload-pdf
uses: actions/upload-artifact@v4
with:
name: PDF
path: astro-notebook.pdf
- name: Send Telegram message
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_CHAT_ID }}
token: ${{ secrets.TELEGRAM_TOKEN }}
message: |
${{ github.actor }} created new commit
Commit message: ${{ github.event.commits[0].message }}
See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}}
Output pdf: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts/${{ steps.upload-pdf.outputs.artifact-id }}
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Handle new commit
on: [push]
on:
push:
branches:
- master
jobs:
build_latex:
runs-on: ubuntu-latest
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/on_new_issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@ on:
issues:
types: [opened, reopened]
jobs:
build_latex:
tg_message:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Send Telegram message
uses: appleboy/telegram-action@master
Expand All @@ -16,7 +14,12 @@ jobs:
message: |
${{ github.event.issue.user.login }} created new issue "${{ github.event.issue.title }}"
See more by https://github.com/${{ github.repository }}/issues/${{ github.event.issue.number }}
- name: Add "inbox" label to the issue
issue_labels:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Add "inbox" and "new" labels to the issue
uses: actions-ecosystem/action-add-labels@v1
with:
labels: |
Expand Down

0 comments on commit 2252f33

Please sign in to comment.