Skip to content

Commit 9648e30

Browse files
committed
chore: Updates workflow dependencies and project license.
1 parent 7739553 commit 9648e30

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/validate-links.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Validate links
33
on:
44
schedule:
55
- cron: '0 0 * * *'
6+
workflow_dispatch:
67

78
jobs:
89
link-checker:
@@ -15,15 +16,17 @@ jobs:
1516
- name: Check links
1617
id: lychee
1718
uses: lycheeverse/lychee-action@v2.7.0
19+
with:
20+
fail: false
1821
- name: Create issue
19-
if: env.lychee_exit_code != 0
22+
if: steps.lychee.outputs.exit_code != 0
2023
uses: peter-evans/create-issue-from-file@v6
2124
with:
2225
title: Link checker report
2326
labels: 'report, automated-issue'
2427
content-filepath: ./lychee/out.md
2528
- name: Assign issues and pull requests
26-
if: env.lychee_exit_code != 0
29+
if: steps.lychee.outputs.exit_code != 0
2730
uses: gustavofreze/auto-assign@2.0.0
2831
with:
2932
assignees: '${{ vars.ASSIGNEES }}'

tutoriais/postgresql/linux/archlinux.md

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

3-
A melhor forma de instalar o PostgreSQL no Arch Linux é atráves do gerenciador de pacotes [pacman](<https://wiki.archlinux.org/index.php/Pacman_(Portugu%C3%AAs)>), que é o gerenciador de pacotes padrão para instalação pacotes dos repositórios oficiais.
3+
A melhor forma de instalar o PostgreSQL no Arch Linux é atráves do gerenciador de pacotes [pacman](https://wiki.archlinux.org/title/Pacman_(Portugu%C3%AAs)), que é o gerenciador de pacotes padrão para instalação pacotes dos repositórios oficiais.
44

55
Para isso, basta executar:
66

0 commit comments

Comments
 (0)