From 8a46bbfb455931974c4916a3b530d403d3fefd8c Mon Sep 17 00:00:00 2001 From: pauloho97 <160677290+pauloho97@users.noreply.github.com> Date: Wed, 2 Apr 2025 23:26:02 +0000 Subject: [PATCH 1/2] alteracoes no codigo para exercicio git hub --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9b2720e..51be623 100644 --- a/README.md +++ b/README.md @@ -25,4 +25,4 @@ License [MIT](http://en.wikipedia.org/wiki/MIT_License) license. - +// Alterações na aula para exercícios no github From a46d512861539e913f63d4a96d727a0bacd0467a Mon Sep 17 00:00:00 2001 From: pauloho97 <160677290+pauloho97@users.noreply.github.com> Date: Thu, 3 Apr 2025 00:24:47 +0000 Subject: [PATCH 2/2] teste de uma nova action/workflow --- .github/workflows/superlinter.yml | 33 +++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/superlinter.yml diff --git a/.github/workflows/superlinter.yml b/.github/workflows/superlinter.yml new file mode 100644 index 0000000..a584a0d --- /dev/null +++ b/.github/workflows/superlinter.yml @@ -0,0 +1,33 @@ +--- +name: Lint + +on: # yamllint disable-line rule:truthy + push: null + pull_request: null + +permissions: {} + +jobs: + build: + name: Lint + runs-on: ubuntu-latest + + permissions: + contents: read + packages: read + # To report GitHub Actions status checks + statuses: write + + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + # super-linter needs the full git history to get the + # list of files that changed across commits + fetch-depth: 0 + + - name: Super-linter + uses: super-linter/super-linter@v7.3.0 # x-release-please-version + env: + # To report GitHub Actions status checks + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file