Skip to content

Commit

Permalink
Merge branch 'manage-docs' of github.com-akanshaaa19:glific/glific-fr…
Browse files Browse the repository at this point in the history
…ontend into manage-docs
  • Loading branch information
akanshaaa19 committed Apr 26, 2024
2 parents 95d5524 + eb3d889 commit 6465c2a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: master # Checkout out master instead of the latest commit
fetch-depth: 0 # Checkout the whole branch

# setup the python
- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
with:
python-version: '3.9'

# configure the gigalixir-actions with our credentials and app name
- uses: mhanberg/gigalixir-action@v0.4.3
- uses: gigalixir/gigalixir-action@v0.6.1
with:
GIGALIXIR_USERNAME: ${{ secrets.GIGALIXIR_USERNAME }}
GIGALIXIR_PASSWORD: ${{ secrets.GIGALIXIR_PASSWORD }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@
name: Close stale issues and PRs
on:
schedule:
- cron: "0 12 * * *"
- cron: '0 12 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
- uses: actions/stale@v9.0.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-label: "inactive"
stale-issue-message: "Without activity, this issue will be closed in 1 day."
close-issue-message: "This issue was closed for inactivity."
stale-pr-message: "Without activity, this PR will be closed in 1 day."
close-pr-message: "This PR was closed for inactivity."
stale-pr-label: "inactive"
stale-issue-label: 'inactive'
stale-issue-message: 'Without activity, this issue will be closed in 1 day.'
close-issue-message: 'This issue was closed for inactivity.'
stale-pr-message: 'Without activity, this PR will be closed in 1 day.'
close-pr-message: 'This PR was closed for inactivity.'
stale-pr-label: 'inactive'
days-before-pr-stale: 90
days-before-pr-close: 1
days-before-issue-stale: 90
Expand Down

0 comments on commit 6465c2a

Please sign in to comment.