Skip to content

Commit

Permalink
Merge pull request #1693 from 0x4007/fix/unavailable
Browse files Browse the repository at this point in the history
Fix/unavailable
  • Loading branch information
0x4007 authored Oct 18, 2024
2 parents 9498fde + 1218556 commit f1bee8c
Show file tree
Hide file tree
Showing 33 changed files with 804 additions and 771 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ TWITTER_API_KEY_SECRET=
TWITTER_ACCESS_TOKEN=
TWITTER_ACCESS_TOKEN_SECRET=

DEVPOOL_OWNER_NAME=ubiquity
DEVPOOL_OWNER_NAME=
DEVPOOL_REPO_NAME=devpool-directory
2 changes: 1 addition & 1 deletion .github/workflows/sync-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- "**.json"
- "**/*.json"
schedule:
- cron: "15 * * * *" # every hour at minute 15 (github recommends to set such cron jobs not at the start of an hour)
- cron: "*/15 * * * *" # every 15 minutes

jobs:
sync-issues:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/sync-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Sync branch to template
on:
workflow_dispatch:
schedule:
- cron: '14 0 1 * *'
- cron: "14 0 1 * *"

jobs:
sync:
Expand All @@ -23,7 +23,7 @@ jobs:
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}

- name: Sync branch to template
env:
GH_TOKEN: ${{ steps.get_installation_token.outputs.token }}
Expand All @@ -45,5 +45,3 @@ jobs:
git commit -m "chore: sync template"
git push "$original_remote" "$pr_branch"
gh pr create --title "Sync branch to template" --body "This pull request merges changes from the template repository." --head "$pr_branch" --base "$branch_name"
2 changes: 1 addition & 1 deletion devpool-issues.json

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion devpool-statistics.json
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
{"rewards":{"notAssigned":15343,"assigned":11125,"completed":78735,"total":105203},"tasks":{"notAssigned":144,"assigned":22,"completed":596,"total":762}}
{
"rewards": { "notAssigned": 15343, "assigned": 11125, "completed": 78735, "total": 105203 },
"tasks": { "notAssigned": 144, "assigned": 22, "completed": 596, "total": 762 }
}
Loading

1 comment on commit f1bee8c

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lines Statements Branches Functions
Coverage: 92%
92.1% (35/38) 80% (12/15) 100% (3/3)

JUnit

Tests Skipped Failures Errors Time
8 0 💤 1 ❌ 0 🔥 8.257s ⏱️

Please sign in to comment.