Skip to content

Commit ff9c25e

Browse files
committed
build: Updates GitHub actions dependencies.
1 parent fbe98b3 commit ff9c25e

File tree

4 files changed

+37
-15
lines changed

4 files changed

+37
-15
lines changed

.github/workflows/auto-assign.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Auto assign pull requests
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
8+
jobs:
9+
run:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
pull-requests: write
13+
steps:
14+
- name: Assign pull requests
15+
uses: gustavofreze/[email protected]
16+
with:
17+
assignees: '${{ secrets.ASSIGNEES }}'
18+
github_token: '${{ secrets.GITHUB_TOKEN }}'
19+
assignment_options: 'PULL_REQUEST'

.github/workflows/label-issue.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
name: "Labeling new issue"
1+
name: Labeling new issue
2+
23
on:
34
issues:
4-
types: ['opened', 'edited']
5+
types: [ 'opened', 'edited' ]
56

67
jobs:
78
build:
89
runs-on: ubuntu-latest
910
steps:
10-
- uses: Renato66/auto-label@v2.2.0
11+
- uses: Renato66/auto-label@v3
1112
with:
1213
repo-token: ${{ secrets.GITHUB_TOKEN }}
13-
labels-not-allowed: '["Stale","Pendente de informações","Falta de informações"]'
14+
labels-not-allowed: '["stale"]'

.github/workflows/stale-issue.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1-
name: "Close stale issues"
1+
name: Close stale issues
2+
23
on:
3-
workflow_dispatch:
44
schedule:
5-
- cron: "0 0 * * *"
5+
- cron: '0 0 * * *'
6+
workflow_dispatch:
67

78
jobs:
89
stale:
910
runs-on: ubuntu-latest
1011
steps:
11-
- uses: actions/stale@v7
12-
with:
13-
repo-token: ${{ secrets.GITHUB_TOKEN }}
14-
stale-issue-message: 'Esta vaga encontra-se há um bom tempo sem novas interações. Se ainda estiver aberta, faça um comentário, caso contrario, a fecharemos automaticamente em 5 dias.'
15-
days-before-stale: 60
16-
days-before-close: 5
17-
ascending: true
12+
- uses: actions/stale@v9
13+
with:
14+
repo-token: ${{ secrets.GITHUB_TOKEN }}
15+
stale-issue-message: 'Esta vaga encontra-se há um bom tempo sem novas interações. Se ainda estiver aberta, faça um comentário, caso contrário, a fecharemos automaticamente em 02 dias.'
16+
close-issue-message: 'Esta vaga foi fechada, pois encontra-se há um bom tempo sem novas interações.'
17+
days-before-stale: 30
18+
days-before-close: 2
19+
ascending: true

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022-2024 Kotlin Brasil
3+
Copyright (c) 2022-2025 Kotlin Brasil
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)