diff --git a/.github/workflows/update-md-date.yml b/.github/workflows/update-md-date.yml index 96dc9d7..ac7a96d 100644 --- a/.github/workflows/update-md-date.yml +++ b/.github/workflows/update-md-date.yml @@ -7,6 +7,7 @@ on: permissions: contents: write + pull-requests: write jobs: update-date: @@ -35,7 +36,12 @@ jobs: run: python .github/workflows/update_date.py - name: Commit changes + env: + TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | + git fetch origin ${{ github.event.pull_request.head.ref }} + git pull --rebase origin ${{ github.event.pull_request.head.ref }} || echo "No rebase needed" git add -A git commit -m "Update last modified date in Markdown files" || echo "No changes to commit" + git remote set-url origin https://x-access-token:${TOKEN}@github.com/${{ github.repository }} git push origin HEAD:${{ github.event.pull_request.head.ref }} diff --git a/.github/workflows/use-visitor-counter.yml b/.github/workflows/use-visitor-counter.yml new file mode 100644 index 0000000..d5c9ec1 --- /dev/null +++ b/.github/workflows/use-visitor-counter.yml @@ -0,0 +1,96 @@ +name: Use Visitor Counter Logic + +on: + pull_request: + branches: + - main + schedule: + - cron: '0 0 * * *' # Runs daily at midnight + workflow_dispatch: # Allows manual triggering + +permissions: + contents: write + pull-requests: write + +jobs: + update-visitor-count: + runs-on: ubuntu-latest + + steps: + - name: Checkout current repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Shallow clone visitor counter logic + run: git clone --depth=1 https://github.com/brown9804/github-visitor-counter.git + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + - name: Install dependencies for github-visitor-counter + run: | + cd github-visitor-counter + npm ci + + - name: Run visitor counter logic (updates markdown badges and metrics.json) + run: node github-visitor-counter/update_repo_views_counter.js + env: + TRAFFIC_TOKEN: ${{ secrets.TRAFFIC_TOKEN }} + REPO: ${{ github.repository }} + + - name: Move generated metrics.json to root + run: mv github-visitor-counter/metrics.json . + + - name: List files for debugging + run: | + ls -l + ls -l github-visitor-counter + + - name: Clean up visitor counter logic + run: rm -rf github-visitor-counter + + - name: Configure Git author + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions[bot]@users.noreply.github.com" + + # Commit and push logic for PR events + - name: Commit and push changes (PR) + if: github.event_name == 'pull_request' + env: + TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + git fetch origin + git checkout ${{ github.head_ref }} + git add "*.md" metrics.json + git commit -m "Update visitor count" || echo "No changes to commit" + git remote set-url origin https://x-access-token:${TOKEN}@github.com/${{ github.repository }} + git pull --rebase origin ${{ github.head_ref }} || echo "No rebase needed" + git push origin HEAD:${{ github.head_ref }} + + # Commit and push logic for non-PR events (schedule, workflow_dispatch) + - name: Commit and push changes (non-PR) + if: github.event_name != 'pull_request' + env: + TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + git fetch origin + git checkout ${{ github.ref_name }} || git checkout -b ${{ github.ref_name }} origin/${{ github.ref_name }} + git add "*.md" metrics.json + git commit -m "Update visitor count" || echo "No changes to commit" + git remote set-url origin https://x-access-token:${TOKEN}@github.com/${{ github.repository }} + git pull --rebase origin ${{ github.ref_name }} || echo "No rebase needed" + git push origin HEAD:${{ github.ref_name }} + + - name: Create Pull Request (non-PR) + if: github.event_name != 'pull_request' + uses: peter-evans/create-pull-request@v6 + with: + token: ${{ secrets.GITHUB_TOKEN }} + branch: update-visitor-count + title: "Update visitor count" + body: "Automated update of visitor count" + base: main diff --git a/README.md b/README.md index 7722051..aafd9b1 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Costa Rica [![GitHub](https://img.shields.io/badge/--181717?logo=github&logoColor=ffffff)](https://github.com/) [brown9804](https://github.com/brown9804) -Last updated: 2025-05-06 +Last updated: 2025-07-16 ------------------------------------------ @@ -286,8 +286,9 @@ Read more about [Endpoints for inference in production](https://learn.microsoft. - +
-

Total Visitors

- Visitor Count + Total views +

Refresh Date: 2025-07-16

+ diff --git a/azML-modelcreation/README.md b/azML-modelcreation/README.md index 50c8ae5..34e227a 100644 --- a/azML-modelcreation/README.md +++ b/azML-modelcreation/README.md @@ -5,11 +5,10 @@ Costa Rica [![GitHub](https://img.shields.io/badge/--181717?logo=github&logoColor=ffffff)](https://github.com/) [brown9804](https://github.com/brown9804) -Last updated: 2025-05-06 +Last updated: 2025-07-16 ------------------------------------------ -
List of References (Click to expand) @@ -299,9 +298,9 @@ https://github.com/user-attachments/assets/1b3e5602-dc64-4c39-be72-ed1cbd74361e > Once deployed, you can send HTTP requests to the endpoint to get predictions. - - +
-

Total Visitors

- Visitor Count + Total views +

Refresh Date: 2025-07-16

+ diff --git a/azML-modelcreation/data/README.md b/azML-modelcreation/data/README.md index 221f295..23cd9b1 100644 --- a/azML-modelcreation/data/README.md +++ b/azML-modelcreation/data/README.md @@ -5,7 +5,7 @@ Costa Rica [![GitHub](https://img.shields.io/badge/--181717?logo=github&logoColor=ffffff)](https://github.com/) [brown9804](https://github.com/brown9804) -Last updated: 2025-04-29 +Last updated: 2025-07-16 ------------------------------------------ @@ -18,8 +18,9 @@ Last updated: 2025-04-29 - **Department**: The department where the employee works (e.g., HR, Engineering, Sales). - **Salary**: The employee's annual salary in USD, ranging from \$40,000 to \$120,000. - +
-

Total Visitors

- Visitor Count + Total views +

Refresh Date: 2025-07-16

+ diff --git a/infrastructure/azMachineLearning/README.md b/infrastructure/azMachineLearning/README.md index 382d3f3..6e736cd 100644 --- a/infrastructure/azMachineLearning/README.md +++ b/infrastructure/azMachineLearning/README.md @@ -5,7 +5,7 @@ Costa Rica [![GitHub](https://img.shields.io/badge/--181717?logo=github&logoColor=ffffff)](https://github.com/) [brown9804](https://github.com/brown9804) -Last updated: 2025-04-29 +Last updated: 2025-07-16 ------------------------------------------ @@ -141,7 +141,9 @@ graph TD; terraform destroy -var-file terraform.tfvars ``` +
-

Total Visitors

- Visitor Count + Total views +

Refresh Date: 2025-07-16

+ diff --git a/infrastructure/msFabric/README.md b/infrastructure/msFabric/README.md index c0423ed..f167664 100644 --- a/infrastructure/msFabric/README.md +++ b/infrastructure/msFabric/README.md @@ -5,7 +5,7 @@ Costa Rica [![GitHub](https://img.shields.io/badge/--181717?logo=github&logoColor=ffffff)](https://github.com/) [brown9804](https://github.com/brown9804) -Last updated: 2025-04-29 +Last updated: 2025-07-16 ------------------------------------------ @@ -154,7 +154,9 @@ graph TD; image +
-

Total Visitors

- Visitor Count + Total views +

Refresh Date: 2025-07-16

+ diff --git a/infrastructure/msFabric/troubleshooting.md b/infrastructure/msFabric/troubleshooting.md index 6888bdb..9068519 100644 --- a/infrastructure/msFabric/troubleshooting.md +++ b/infrastructure/msFabric/troubleshooting.md @@ -5,7 +5,7 @@ Costa Rica [![GitHub](https://img.shields.io/badge/--181717?logo=github&logoColor=ffffff)](https://github.com/) [brown9804](https://github.com/brown9804) -Last updated: 2025-04-29 +Last updated: 2025-07-16 ------------------------------------------ @@ -183,7 +183,9 @@ Error: Failed to get existing workspaces: Error retrieving keys for Storage Acco image

+
-

Total Visitors

- Visitor Count + Total views +

Refresh Date: 2025-07-16

+ diff --git a/metrics.json b/metrics.json new file mode 100644 index 0000000..8665541 --- /dev/null +++ b/metrics.json @@ -0,0 +1,37 @@ +[ + { + "date": "2025-07-07", + "count": 330, + "uniques": 20 + }, + { + "date": "2025-07-08", + "count": 159, + "uniques": 6 + }, + { + "date": "2025-07-10", + "count": 482, + "uniques": 1 + }, + { + "date": "2025-07-11", + "count": 170, + "uniques": 4 + }, + { + "date": "2025-07-12", + "count": 7, + "uniques": 1 + }, + { + "date": "2025-07-14", + "count": 130, + "uniques": 2 + }, + { + "date": "2025-07-15", + "count": 2, + "uniques": 1 + } +] \ No newline at end of file diff --git a/msFabric-AI_integration/README.md b/msFabric-AI_integration/README.md index e5e93ea..23efbcf 100644 --- a/msFabric-AI_integration/README.md +++ b/msFabric-AI_integration/README.md @@ -5,7 +5,7 @@ Costa Rica [![GitHub](https://img.shields.io/badge/--181717?logo=github&logoColor=ffffff)](https://github.com/) [brown9804](https://github.com/brown9804) -Last updated: 2025-04-29 +Last updated: 2025-07-16 ------------------------------------------ @@ -397,7 +397,9 @@ Make sure to replace `"your_openai_api_key"`, `"https://your_openai_api_base/"`, pprint(dict(rm), indent=4) ``` +
-

Total Visitors

- Visitor Count + Total views +

Refresh Date: 2025-07-16

+