Skip to content

Commit

Permalink
add issue actions
Browse files Browse the repository at this point in the history
  • Loading branch information
baszoetekouw committed Dec 20, 2023
1 parent 314a068 commit f824d84
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
root = true

[*]
indent_style = tab
indent_size = 4
tab_width = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false
max_line_length = 120

[*.py]
indent_style = space

[*.{yaml,yml}]
indent_style = space
indent_size = 2
24 changes: 24 additions & 0 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Project automation

on:
issues:
types:
- opened
- reopened
- closed
pull_request:
types:
- opened
- reopened
- review_requested
- closed

jobs:
project_management:
uses: SURFscz/SCZ-deploy/.github/workflows/project.yml@main
with:
event: ${{ github.event_name }}
action: ${{ github.event.action }}
state_reason: ${{ github.event.issue.state_reason }}
secrets: inherit

0 comments on commit f824d84

Please sign in to comment.