Skip to content

Commit 6062504

Browse files
committed
First post
0 parents  commit 6062504

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+712
-0
lines changed

.editorconfig

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
trim_trailing_whitespace = true
8+
# Unix-style newlines with a newline ending every file
9+
end_of_line = lf
10+
insert_final_newline = true
11+
12+
[*.{js,css,scss}]
13+
quote_type = single
14+
15+
[*.{yml,yaml}]
16+
quote_type = double
17+
18+
[*.md]
19+
trim_trailing_whitespace = false

.gitattributes

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Set default behavior to automatically normalize line endings.
2+
* text=auto
3+
4+
# Force bash scripts to always use LF line endings so that if a repo is accessed
5+
# in Unix via a file share from Windows, the scripts will work.
6+
*.sh text eol=lf
7+
8+
# Force batch scripts to always use CRLF line endings so that if a repo is accessed
9+
# in Windows via a file share from Linux, the scripts will work.
10+
*.{cmd,[cC][mM][dD]} text eol=crlf
11+
*.{bat,[bB][aA][tT]} text eol=crlf
12+
13+
# Denote all files that are truly binary and should not be modified.
14+
*.png binary
15+
*.jpg binary
16+
*.ico binary

.github/workflows/pages-deploy.yml

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
name: "Build and Deploy"
2+
on:
3+
push:
4+
branches:
5+
- main
6+
paths-ignore:
7+
- .gitignore
8+
- README.md
9+
- LICENSE
10+
11+
# Allows you to run this workflow manually from the Actions tab
12+
workflow_dispatch:
13+
14+
permissions:
15+
contents: read
16+
pages: write
17+
id-token: write
18+
19+
# Allow one concurrent deployment
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: true
23+
24+
jobs:
25+
build:
26+
runs-on: ubuntu-latest
27+
28+
steps:
29+
- name: Checkout
30+
uses: actions/checkout@v4
31+
with:
32+
fetch-depth: 0
33+
# submodules: true
34+
# If using the 'assets' git submodule from Chirpy Starter, uncomment above
35+
# (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets)
36+
37+
- name: Setup Pages
38+
id: pages
39+
uses: actions/configure-pages@v4
40+
41+
- name: Setup Ruby
42+
uses: ruby/setup-ruby@v1
43+
with:
44+
ruby-version: 3.3
45+
bundler-cache: true
46+
47+
- name: Build site
48+
run: bundle exec jekyll b -d "_site${{ steps.pages.outputs.base_path }}"
49+
env:
50+
JEKYLL_ENV: "production"
51+
52+
- name: Upload site artifact
53+
uses: actions/upload-pages-artifact@v3
54+
with:
55+
path: "_site${{ steps.pages.outputs.base_path }}"
56+
57+
deploy:
58+
environment:
59+
name: github-pages
60+
url: ${{ steps.deployment.outputs.page_url }}
61+
runs-on: ubuntu-latest
62+
needs: build
63+
steps:
64+
- name: Deploy to GitHub Pages
65+
id: deployment
66+
uses: actions/deploy-pages@v4

.gitignore

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Bundler cache
2+
.bundle
3+
vendor
4+
Gemfile.lock
5+
6+
# Jekyll cache
7+
.jekyll-cache
8+
.jekyll-metadata
9+
_site
10+
11+
# RubyGems
12+
*.gem
13+
14+
# NPM dependencies
15+
node_modules
16+
package-lock.json
17+
18+
# IDE configurations
19+
.idea
20+
.vscode
21+
!.vscode/settings.json
22+
!.vscode/extensions.json
23+
24+
# Misc
25+
_sass/dist
26+
assets/js/dist

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "assets/lib"]
2+
path = assets/lib
3+
url = https://github.com/cotes2020/chirpy-static-assets.git

.nojekyll

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

Gemfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# frozen_string_literal: true
2+
3+
source "https://rubygems.org"
4+
5+
gem "jekyll-theme-chirpy", "~> 7.0", ">= 7.0.1"
6+
7+
group :test do
8+
gem "html-proofer", "~> 5.0"
9+
end

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Cotes Chung
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## 📝 My blog!🌟
2+
3+
In this space, I'll be sharing my personal journey, challenges, and experiences in the world of DevOps.
4+
5+
|![GitHub](./assets/img/readme/github-foundation-exam.png) |[How to Pass GitHub Foundations Certification Exam: My Own Certification Journey](./_posts/2024-03-12-github-foundation-exam.md)|
6+
|:---:|:---:|
7+
|![Azure DevOps](./assets/img/readme/power-shell.png) |[Tracking Field Usage Across Azure DevOps Project](./_posts/2024-06-01-tracking-field-usage.md)|
8+
|![Azure DevOps](./assets/img/readme/power-shell.png) |[Automating Test Cases Deletion in Azure DevOps with PowerShell](./_posts/2023-11-23-delete-testcases.md)|
9+
|![Azure DevOps](./assets/img/readme/azure-devops.png) |[Migrating Inherited Process in Azure DevOps](./_posts/2023-10-21-process-migration.md)|
10+
|![Azure DevOps](./assets/img/readme/power-shell.png) |[PowerShell Script: List Work Items Moved Between Projects](./_posts/2023-09-23-list-moved-work-items.md)|
11+
|![Logic App](./assets/img/readme/logic-app.png) |[Maximizing Productivity with Azure DevOps & Logic Apps](./_posts/2023-09-16-maximizing-productivity-with-azure-devops-logic-apps.md)|
12+
|![Azure DevOps](./assets/img/readme/power-shell.png) |[Automate Adding Users to a Security Group in Azure DevOps](./_posts/2023-09-13-add-users-to-security-group.md)|
13+
|![TFVC-Git](./assets/img/readme/tfvc-git.png) |[Migrate TFVC to Git in Azure DevOps](./_posts/2023-09-05-tfvc-to-git.md)|
14+
|![Git Hooks](./assets/img/readme/git-hooks.png) |[Git Hooks](./_posts/2023-09-03-git-hooks.md)|
15+
16+
📌 If you find my content helpful, don't forget to ⭐ this repository to show your support!
17+
18+
[🔗 Blog Link](https://rehababotalep.github.io/)

0 commit comments

Comments
 (0)