diff --git a/.github/workflows/apptest.yml b/.github/workflows/apptest.yml deleted file mode 100644 index 2fc5746bc..000000000 --- a/.github/workflows/apptest.yml +++ /dev/null @@ -1,20 +0,0 @@ -# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions -name: Continuous Integration -on: - push: - branches: [master] - pull_request: - branches: [master] -jobs: - buildAndTest: - name: Install and Test - runs-on: ubuntu-latest - defaults: - run: - working-directory: frontend - steps: - - uses: actions/checkout@v1 - - run: yarn - - name: Test - run: yarn test diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 98b3485b5..000000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Deploy - -on: - push: - branches: - - demo - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: CDNievas/heroku-action@v1.0 # This is the action - with: - heroku_email: 'lalami.sdn@gmail.com' - heroku_api_key: ${{secrets.HEROKU_API_KEY}} - heroku_app_name: 'idurar-crm-erp' diff --git a/.github/workflows/github-repo-stats.yml b/.github/workflows/github-repo-stats.yml new file mode 100644 index 000000000..dc21adea4 --- /dev/null +++ b/.github/workflows/github-repo-stats.yml @@ -0,0 +1,20 @@ +name: github-repo-stats + +on: + schedule: + # Run this once per day, towards the end of the day for keeping the most + # recent data point most meaningful (hours are interpreted in UTC). + - cron: "20 13 * * *" + workflow_dispatch: # Allow for running this manually. + +jobs: + j1: + name: github-repo-stats + runs-on: ubuntu-latest + steps: + - name: run-ghrs + # Use latest release. + uses: jgehrcke/github-repo-stats@RELEASE + with: + ghtoken: ${{ secrets.ghrs_github_api_token }} + diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml deleted file mode 100644 index 01b926316..000000000 --- a/.github/workflows/workflow.yml +++ /dev/null @@ -1,32 +0,0 @@ -on: - schedule: - # runs once a week on sunday - - cron: "55 23 * * 0" - -jobs: - # This workflow contains a single job called "traffic" - traffic: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - with: - ref: "traffic" - - # Calculates traffic and clones and stores in CSV file - - name: GitHub traffic - uses: sangonzal/repository-traffic-action@v.0.1.6 - env: - TRAFFIC_ACTION_TOKEN: ${{ secrets.TRAFFIC_ACTION_TOKEN }} - - # Commits files to repository - - name: Commit changes - uses: EndBug/add-and-commit@v4 - with: - author_name: Santiago Gonzalez - message: "GitHub traffic" - add: "./traffic/*" - ref: "traffic" # commits to branch "traffic"