Skip to content

Commit

Permalink
Merge pull request #231 from wiseweb-works/main
Browse files Browse the repository at this point in the history
SCSS sistemi, yeni Workflow, Fontawesome güncellemesi
  • Loading branch information
GokturkTalha authored Dec 14, 2024
2 parents 5e1581f + 3ff7297 commit 31766c0
Show file tree
Hide file tree
Showing 22 changed files with 495 additions and 207 deletions.
17 changes: 8 additions & 9 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@

version: 2
updates:

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: "daily"
interval: 'daily'

# Maintain dependencies for Submodule (in case you need it in the future.)
- package-ecosystem: "gitsubmodule"
directory: "/"
schedule:
interval: "daily"
# # Maintain dependencies for Submodule (in case you need it in the future.)
# - package-ecosystem: "gitsubmodule"
# directory: "/"
# schedule:
# interval: "daily"
44 changes: 44 additions & 0 deletions .github/workflows/delete_workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Delete old workflow runs
on:
workflow_dispatch:
inputs:
days:
description: 'Number of days.'
required: true
default: 7
minimum_runs:
description: 'The minimum runs to keep for each workflow.'
required: true
default: 3
delete_workflow_pattern:
description: 'The name or filename of the workflow. if not set then it will target all workflows.'
required: false
delete_workflow_by_state_pattern:
description: 'Remove workflow by state: active, deleted, disabled_fork, disabled_inactivity, disabled_manually'
required: true
default: 'All'
type: choice
options:
- 'All'
- active
- deleted
- disabled_inactivity
- disabled_manually
dry_run:
description: 'Only log actions, do not perform any delete operations.'
required: false

jobs:
del_runs:
runs-on: ubuntu-latest
steps:
- name: Delete workflow runs
uses: Mattraks/delete-workflow-runs@v2
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: ${{ github.event.inputs.days }}
keep_minimum_runs: ${{ github.event.inputs.minimum_runs }}
delete_workflow_pattern: ${{ github.event.inputs.delete_workflow_pattern }}
delete_workflow_by_state_pattern: ${{ github.event.inputs.delete_workflow_by_state_pattern }}
dry_run: ${{ github.event.inputs.dry_run }}
3 changes: 2 additions & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ jobs:
- name: Run Super-Linter with detailed output
uses: super-linter/super-linter/slim@latest
env:
LINTER_RULES_PATH: /
LINTER_RULES_PATH: /linting-rules
MARKDOWN_CONFIG_FILE: .markdown-lint.yml
CSS_FILE_NAME: .stylelintrc.yml
VALIDATE_ALL_CODEBASE: false
VALIDATE_MARKDOWN: true
FIX_MARKDOWN: true
Expand Down
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -396,3 +396,13 @@ FodyWeavers.xsd

# JetBrains Rider
*.sln.iml

# Dot files
.prettierrc
.markdownlint.json

# Vscode extra
extensions.json
terminals.json
package.json
package-lock.json
Loading

0 comments on commit 31766c0

Please sign in to comment.