Skip to content

Commit

Permalink
Merge pull request #23 from elidakirigo/auto-flow
Browse files Browse the repository at this point in the history
Auto flow
  • Loading branch information
elidakirigo authored Mar 13, 2024
2 parents 781172f + 91764a9 commit 4a31f9e
Show file tree
Hide file tree
Showing 6 changed files with 114 additions and 2 deletions.
31 changes: 31 additions & 0 deletions .github/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#0f0ddf",
"activityBar.background": "#0f0ddf",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#1e0202",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#e7e7e799",
"editorGroup.border": "#0f0ddf",
"panel.border": "#0f0ddf",
"sash.hoverBorder": "#0f0ddf",
"sideBar.border": "#0f0ddf",
"statusBar.background": "#0c0aaf",
"statusBar.border": "#0c0aaf",
"statusBar.debuggingBackground": "#adaf0a",
"statusBar.debuggingBorder": "#adaf0a",
"statusBar.debuggingForeground": "#15202b",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#0f0ddf",
"statusBarItem.remoteBackground": "#0c0aaf",
"statusBarItem.remoteForeground": "#e7e7e7",
"tab.activeBorder": "#0f0ddf",
"titleBar.activeBackground": "#0c0aaf",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.border": "#0c0aaf",
"titleBar.inactiveBackground": "#0c0aaf99",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.color": "#0c0aaf"
}
4 changes: 2 additions & 2 deletions .github/workflows/greet-contributers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: EddieHubCommunity/gh-action-community/src/welcome@main
# - uses: EddieHubCommunity/gh-action-community/src/welcome@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
# github-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: "<h3>Hey! contributor, thank you for opening an Issue 🎉.</h3>"
pr-message: "<h3>Hey! contributor, thank you for opening a Pull Request 🎉.</h3>"
footer: "Soon one of our maintainers will review it and provide you with feedback/suggestions.</b><br><br><b>Happy, Open Source!</b>"
45 changes: 45 additions & 0 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# name: Linters

# on: pull_request

# env:
# FORCE_COLOR: 1

# jobs:
# eslint:
# name: ESLint
# runs-on: ubuntu-18.04
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@v1
# with:
# node-version: "12.x"
# - name: Setup ESLint
# run: |
# npm install --save-dev [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] @babel/[email protected] @babel/[email protected] @babel/[email protected] @babel/[email protected] @babel/[email protected]
# [ -f .eslintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/react-redux/.eslintrc.json
# [ -f .babelrc ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/react-redux/.babelrc
# - name: ESLint Report
# run: npx eslint . --fix
# stylelint:
# name: Stylelint
# runs-on: ubuntu-18.04
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@v1
# with:
# node-version: "12.x"
# - name: Setup Stylelint
# run: |
# npm install --save-dev [email protected] [email protected] [email protected] [email protected]
# [ -f .stylelintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/react-redux/.stylelintrc.json
# - name: Stylelint Report
# run: npx stylelint "**/*.{css,scss}" --fix
# nodechecker:
# name: node_modules checker
# runs-on: ubuntu-18.04
# steps:
# - uses: actions/checkout@v2
# - name: Check node_modules existence
# run: |
# if [ -d "node_modules/" ]; then echo -e "\e[1;31mThe node_modules/ folder was pushed to the repo. Please remove it from the GitHub repository and try again."; echo -e "\e[1;32mYou can set up a .gitignore file with this folder included on it to prevent this from happening in the future." && exit 1; fi
19 changes: 19 additions & 0 deletions .github/workflows/readmeUpdate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Recent activity

on:
schedule:
- cron: "*/5 * * * *"

jobs:
build:
runs-on: ubuntu-latest
name: Update this repo's README with recent activity

steps:
- uses: actions/checkout@v2
- uses: jamesgeorge007/github-activity-readme@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
COMMIT_MSG: "Updated README with recent activity"
MAX_LINES: 10
16 changes: 16 additions & 0 deletions .github/workflows/schedule.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Export Firebase Data

on:
schedule:
- cron: '0 0 **'

jobs:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/github/setup-gcloud@master
with:
service_account_key: ${{secrets.GCP_SA_KEY}}
export_default_credentials: true

- run: gcloud config set project $PROJECT_ID
- run: gcloud firestor export $BUCKET
1 change: 1 addition & 0 deletions githubIssues.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
important no:assignee language:javascript

0 comments on commit 4a31f9e

Please sign in to comment.