diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..de750ce2 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +# See the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "pip" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" diff --git a/.github/workflows/dev.yaml b/.github/workflows/dev.yaml index d4ca110b..15a0b33d 100644 --- a/.github/workflows/dev.yaml +++ b/.github/workflows/dev.yaml @@ -30,16 +30,4 @@ jobs: if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} uses: actions/setup-node@v2 with: - node-version: '14' - - name: Deploy to Netlify - if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} - # NETLIFY_AUTH_TOKEN and NETLIFY_SITE_ID added in the repo's secrets - env: - NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} - NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} - BRANCHE_REF: ${{ github.event.pull_request.head.ref }} - run: | - npm init -y - npm install --unsafe-perm=true netlify-cli -g - netlify init - netlify deploy --alias=${BRANCHE_REF} --dir="_site" --message "Preview deploy from ${BRANCHE_REF}" + node-version: '14'