From 9cddf44cd9757fe80ddc23d09fef4a77fff668ec Mon Sep 17 00:00:00 2001 From: Fabiana Campanari Date: Mon, 23 Oct 2023 00:28:11 -0300 Subject: [PATCH] Initial commit --- .github/workflows/auto-assign.yml | 19 +++++++++++++++++++ .github/workflows/proof-html.yml | 11 +++++++++++ README.md | 4 ++++ index.html | 1 + package.json | 9 +++++++++ 5 files changed, 44 insertions(+) create mode 100644 .github/workflows/auto-assign.yml create mode 100644 .github/workflows/proof-html.yml create mode 100644 README.md create mode 100644 index.html create mode 100644 package.json diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml new file mode 100644 index 0000000..a70261f --- /dev/null +++ b/.github/workflows/auto-assign.yml @@ -0,0 +1,19 @@ +name: Auto Assign +on: + issues: + types: [opened] + pull_request: + types: [opened] +jobs: + run: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - name: 'Auto-assign issue' + uses: pozil/auto-assign-issue@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + assignees: FabianaCampanari + numOfAssignee: 1 diff --git a/.github/workflows/proof-html.yml b/.github/workflows/proof-html.yml new file mode 100644 index 0000000..be7dac3 --- /dev/null +++ b/.github/workflows/proof-html.yml @@ -0,0 +1,11 @@ +name: Proof HTML +on: + push: + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: anishathalye/proof-html@v1.1.0 + with: + directory: ./ diff --git a/README.md b/README.md new file mode 100644 index 0000000..ccbefa2 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Welcome to your organization's demo respository +This code repository (or "repo") is designed to demonstrate the best GitHub has to offer with the least amount of noise. + +The repo includes an `index.html` file (so it can render a web page), two GitHub Actions workflows, and a CSS stylesheet dependency. diff --git a/index.html b/index.html new file mode 100644 index 0000000..58c945b --- /dev/null +++ b/index.html @@ -0,0 +1 @@ +

Welcome to the website generated by my demo repository

diff --git a/package.json b/package.json new file mode 100644 index 0000000..40427d6 --- /dev/null +++ b/package.json @@ -0,0 +1,9 @@ +{ + "name": "demo-repo", + "version": "0.2.0", + "description": "A sample package.json", + "dependencies": { + "@primer/css": "17.0.1" + }, + "license": "MIT" +}